码迷,mamicode.com
首页 > 其他好文 > 详细

nginx配置记录

时间:2017-09-29 11:35:37      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:real   ring   location   eal   rewrite   pst   ext   host   header   

http请求转到https

location / {
access_log /usr/local/nginx/logs/access2.log access4;
rewrite ^(.*)$ https://$host$1 permanent; #访问转到https
#当502或504时,将请求转发到负载均衡中正常server中
#proxy_next_upstream http_502 http_504 error timeout invalid_header;
#proxy_pass http://cloudringpy;
#proxy_redirect off;
#proxy_set_header Host $host:80;
#若nginx为最前端时,后端获得X-Real-IP传递的ip即为实际ip,若nginx不是最前端时,实际ip为X-Forwarded-For值。
#proxy_set_header X-Real-IP $remote_addr;
#proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}

nginx配置记录

标签:real   ring   location   eal   rewrite   pst   ext   host   header   

原文地址:http://www.cnblogs.com/liqing1009/p/7610194.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!