码迷,mamicode.com
首页 > 系统相关 > 详细

Linux Centos7下如何在代理服务器(nginx通过访问日志查看访问到哪个真实的服务器

时间:2019-09-09 21:06:34      阅读:890      评论:0      收藏:0      [点我收藏+]

标签:状态   log   nginx   配置   代理   文件中   form   byte   eth   

在nginx子配置文件中加下面加粗字体部分

location / {
proxy_pass http://static;
proxy_redirect off;
proxy_set_header Host $host;
proxysetheader backendIP $upstreamaddr; #要代理的服务器的地址
proxysetheader backendCode $upstreamstatus; #要代理的服务器的状态

proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}

在主配置文件中
log_format main ‘$remote_addr - $remote_user [$time_local] "$request" ‘
‘$status $body_bytes_sent "$http_referer" ‘
‘"$http_user_agent" "$http_x_forwarded_for"‘
‘"$upstream_addr" "$upstream_status"‘;
即可通过tailf /var/log/nginx/access.log 查看到

Linux Centos7下如何在代理服务器(nginx通过访问日志查看访问到哪个真实的服务器

标签:状态   log   nginx   配置   代理   文件中   form   byte   eth   

原文地址:https://blog.51cto.com/14482279/2436909

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