在nginx中获取客户端真实IP的方法有多种,以下是其中两种常用的方法:
log_format mylog '$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 mylog;
在上述配置中,通过使用http_x_forwarded_for字段来获取客户端的真实IP地址。如果该字段不存在或不合法,则使用remote_addr字段来获取客户端IP地址。
location / { proxy_pass http://backend; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; }
在上述配置中,当Nginx代理请求到后端服务器时,会将客户端的真实IP地址添加到X-Forwarded-For头部中,然后将请求转发给后端服务器。后端服务器可以通过解析X-Forwarded-For字段来获取客户端的真实IP地址。
上一篇:nginx详解与配置