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

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

最佳答案

美好的一天!

按照说明https://www.jetbrains.com/upsource/help/2.0/proxy_configuration.html中的说明进行

设置为Nginx上游作为代理
关闭防火墙端口1111,仅留意Nginx。

配置基本网址:

<upsource_home>\bin\upsource.bat configure --listen-port 1111 --base-url https://upsource.mydomain.com/


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/;
         }
       }

10-07 23:27