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

前端之家收集整理的这篇文章主要介绍了在Nginx反向代理上为GitLab配置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重定向

最佳答案
有两个选项:重写和HTTP 301永久重定向,第二个是更优选:

server {
       listen         80;
       server_name    _;
       return         301 https://$server_name$request_uri;
}
原文链接:https://www.f2er.com/nginx/435518.html

猜你在找的Nginx相关文章