如何在Jetbrains Upsource 2.0中启用HTTPS

时间:2015-05-30 16:17:46

标签: ssl https upsource

我正在评估Jetbrain的源代码审查工具Upsource。

文档或2.0发行版中没有任何内容(我可以找到)解释如何启用SSL / TLS。如何才能做到这一点?除了通过HTTPS,我们无法提供源代码!

2 个答案:

答案 0 :(得分:0)

美好的一天!

按说明matching balanced parentheses

中所述进行制作

设置为Npsource Nginx作为代理 关闭防火墙端口1111,只留下Nginx注意。

配置基本网址:

server {
        listen 443 ssl;

         ssl_certificate <path_to_certificate>
         ssl_certificate_key <path_to_key>

         server_name  localhost;

         location  / {
            proxy_set_header X-Forwarded-Host $http_host;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_set_header X-Forwarded-Proto $scheme;
            proxy_http_version 1.1;

            # to proxy WebSockets in nginx
            proxy_set_header Upgrade $http_upgrade;
            proxy_set_header Connection "upgrade";
            proxy_pass http://localhost:1111/;
         }
       }

Nginx配置文件:

{-# LANGUAGE Rank2Types, GADTs  #-}

type Record fields = forall t. fields t -> t

data PersonField t where
    Name :: PersonField String
    Age :: PersonField Int
type Person = Record PersonField

答案 1 :(得分:0)

Upsource 2018已经改变了;它有built-in TLS support

  

有多种方法可以在您的Upsource服务器与其客户端之间使用TLS(SSL)设置加密的HTTPS连接。

     
      
  • 使用Upsource的内置TLS。您可以将Upsource配置为以HTTPS模式运行:

         
        在初始Upsource安装或升级期间,从配置向导
    •   
    • 从命令行启用(并禁用)现有Upsource安装的HTTPS

    •   
  •   
  • 使用第三方TLS终止代理服务器。当您必须在代理服务器后面运行Upsource时,除了加密之外的其他原因,此选项更可取。有关详细信息,请参阅代理配置。

  •   
     

您可以随时从第三方TLS终止代理切换到Upsource内置TLS,反之亦然,无论您当前的设置如何。