nginx 后端获取真实ip

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 后端获取真实ip相关的知识,希望对你有一定的参考价值。

nginx前端配置

server {
listen 80;
server_name blog.jinchuang.org;

access_log logs/blog.access.log;
error_log logs/blog.error.log;
location / {
proxy_pass http://dis ;
                    proxy_set_header Host $host;
                    proxy_set_header X-Real-IP $remote_addr; 
                    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}

 

后端nginx配置

server {
listen 80;
server_name blog.jinchuang.org;
access_log logs/blog.access.log;
error_log logs/blog.error.log;
location / {

root /usr/local/nginx/blog/wordpress;
index index.php;
}

#获取真实ip
set_real_ip_from 192.168.0.0/24;  #前端主机的ip段或主机ip
real_ip_header X-Real-IP;

location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/local/nginx/blog/wordpress$fastcgi_script_name;
include fastcgi_params;
}
error_page 404 http://www.jinchuang.org/404.html;

}


本文出自 “jinchuang” 博客,请务必保留此出处http://jinchuang.blog.51cto.com/8690689/1844463

以上是关于nginx 后端获取真实ip的主要内容,如果未能解决你的问题,请参考以下文章

nginx反向代理 后端apache获取真实ip方式

nginx 后端获取真实ip

nginx http_realip_module 被高级安全防护设备代理后,获取用户端真实IP,并通过真实IP负载均衡转发到后端应用

nginx代理,tomcat部署服务器,后端获取客户端真实ip

nginx代理,tomcat部署服务器,后端获取客户端真实ip

服务器 获取用户 真实ip