美文网首页
Nginx 配置篇

Nginx 配置篇

作者: getsu | 来源:发表于2018-11-09 12:41 被阅读0次
            location  / {
              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-Forwarded-Proto $scheme;
              proxy_redirect http:// https://;
              proxy_pass http://127.0.0.1:80/;
            }
    

    相关文章

      网友评论

          本文标题:Nginx 配置篇

          本文链接:https://www.haomeiwen.com/subject/bmanxqtx.html