观天

Nginx反向代理,后端服务器获取客户端真实地址

适合网站前面部署安全防护类产品,例如web应用防火墙反向代理,Nginx反向代理、云防waf、云盾

#前方nginx代理服务器配置:

location / {
#root html;
#index index.html index.htm;
proxy_pass http://127.0.0.1;             #转发请求,写后端服务器地址或域名,顺便转发X-Real-IP、X-Forwarded-For地址
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
#proxy_set_header Host $http_host;
#proxy_set_header X-Forwarded-Proto https;



#后端Nginx服务器配置:
set_real_ip_from 0.0.0.0/0;
real_ip_header X-Forwarded-For;

 

赞(6)
未经允许不得转载:观天 » Nginx反向代理,后端服务器获取客户端真实地址