在 GitLab 的 Nginx 反向代理上配置 SSL

在 GitLab 的 Nginx 反向代理上配置 SSL

我在个人 gitlab 设置中遇到了一个小问题。我想重定向来自http://gitlab.example.comhttps://gitlab.example.com。SSL 确实正在https://gitlab.example.com但必须具体输入。下面是我的 nginx conf 文件。

server {
    listen 192.168.1.139:443;
    server_name gitlab.example.com;

    listen 443;
    ssl on;
    ssl_certificate /etc/nginx/ssl/gitlab.crt;
    ssl_certificate_key /etc/nginx/ssl/gitlab.key;


location / {
    proxy_pass http://192.168.1.139:80;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header x-Forwarded-For $proxy_add_x_forwarded_for;
   }
}

GitLab 安装是综合安装。我到底要在配置文件中更改什么才能允许 SSL 重定向?

答案1

有 2 个选项:重写和 HTTP 301 永久重定向,第二个是更可取的:

server {
       listen         80;
       server_name    _;
       return         301 https://$server_name$request_uri;
}

相关内容