Nginx反向代理背后的GitLab

时间:2018-10-20 07:33:08

标签: nginx gitlab

我无法让GitLab在Nginx反向代理后面工作。

nginx version: nginx/1.14.0 (Ubuntu)

gitlab-ce                             11.3.6-ce.0

在/etc/gitlab/gitlab.rb中,我已经设置了(根据文档):

external_url 'https://gitlab.mydomain.io'
nginx['listen_port'] = 81
nginx['listen_https'] = false

我使用端口81,因此反向代理可以绑定到80,因此更容易获得LetsEncrypt证书。这是我的gitlab子域的虚拟主机:

 upstream gitlab {
server localhost:81 fail_timeout=0;
}

server {
    listen 82;
    listen [::]:82;
    server_name gitlab.mydomain.io;

  return 301 https://$server_name$request_uri;
}

server {
  listen 443 ssl;
listen [::]:443 ssl;
  server_name gitlab.mydomain.io;

ssl_certificate         /etc/nginx/ssl/gitlab.mydomain.io.crt;
ssl_certificate_key     /etc/nginx/ssl/gitlab.mydomain.io.key;

 ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3;

  location / {
            proxy_read_timeout      300;
            proxy_connect_timeout   300;
            proxy_redirect          off;

  proxy_set_header        X-Forwarded-Proto $scheme;
            proxy_set_header        Host              $http_host;
            proxy_set_header        X-Real-IP         $remote_addr;
            proxy_set_header        X-Forwarded-For   $proxy_add_x_forwarded_for;
            proxy_set_header        X-Frame-Options   SAMEORIGIN;
            proxy_pass              https://gitlab;
    }

}

导航到子域时,在nginx日志中显示502错误网关,并显示以下错误:

 [error] 6301#6301: *6 SSL_do_handshake() failed (SSL: error:1408F10B:SSL routines:ssl3_get_record:wrong version number) while SSL handshaking to upstream, client: 88.217.180.123, server: gitlab.mydomain.io, request: "GET / HTTP/1.1", upstream: "https://127.0.0.1:81/", host: "gitlab.mydomain.io"

我尝试对nginx使用不同的协议,但无济于事。有人有主意吗?

0 个答案:

没有答案