nginx - reverse proxy 记录真实的访问IP地址
在proxy server的配置文件中/etc/nginx/sites-available/default
在后端池的服务器配置文件上/etc/nginx/nginx.conf
添加下面红色的内容
log_format main '$remote_addr - $remote_user [$time_local] "$request"' '$status $body_bytes_sent "$http_referer"' '"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
这样访问的时候,在后端池的access.log就可以看到真实的ip地址: