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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux Centos7下如何在代理服务器(nginx通过访问日志查看访问到哪个真实的服务器相关的知识,希望对你有一定的参考价值。

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通过访问日志查看访问到哪个真实的服务器的主要内容,如果未能解决你的问题,请参考以下文章

centos7安装squid代理

centos7安装squid代理

centos7安装squid代理

centos7安装squid代理

linux下nginx安装配置实战

在Centos7下搭建Socks5代理服务器