黑帽联盟

标题: nginx proxy获取用户真实ip [打印本页]

作者: 定位    时间: 2017-3-20 21:44
标题: nginx proxy获取用户真实ip
  在搭建nginx proxy的时候,要获取用户的真实ip一般的做法是修改网站代码来获取,这里给大家介绍一种不修改网站代码就可以获取到用户真实ip的方法.

  系统:centos 5.9

  需要的软件包:HttpRealIpModule模块

1.编译安装HttpRealIpModule模块
只需要在nginx编译安装中加上--with-http_realip_module这一选项就可以了
  1. ./configure --user=www --group=www  --prefix=/usr/share/nginx --sbin-path=/usr/sbin/nginx \
  2. --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log \
  3. --http-client-body-temp-path=/var/lib/nginx/tmp/client_body --http-proxy-temp-path=/var/lib/nginx/tmp/proxy \
  4. --http-fastcgi-temp-path=/var/lib/nginx/tmp/fastcgi --pid-path=/var/run/nginx.pid \
  5. --lock-path=/var/lock/subsys/nginx --with-http_secure_link_module --with-http_random_index_module \
  6. --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module \
  7. --with-http_dav_module --with-http_flv_module --with-http_gzip_static_module --with-http_stub_status_module \
  8. --with-http_perl_module --with-http_geoip_module --with-mail --with-mail_ssl_module
复制代码
2.nginx proxy 配置
  1. location / {
  2. proxy_redirect off ;
  3. proxy_set_header Host $host;
  4. proxy_set_header X-Real-IP $remote_addr;
  5. proxy_set_header REMOTE-HOST $remote_addr;
  6. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  7. client_max_body_size 50m;
  8. client_body_buffer_size 256k;
  9. proxy_connect_timeout 30;
  10. proxy_send_timeout 30;
  11. proxy_read_timeout 60;
  12. proxy_buffer_size 256k;
  13. proxy_buffers 4 256k;
  14. proxy_busy_buffers_size 256k;
  15. proxy_temp_file_write_size 256k;
  16. proxy_next_upstream error timeout invalid_header http_500 http_503 http_404;
  17. proxy_max_temp_file_size 128m;
  18. proxy_pass https://blog.slogra.com;
  19. }
复制代码
3.虚拟主机增加配置
set_real_ip_from nginx_proxy_ip/24;
set_real_ip_from nginx_proxy_ip;
real_ip_header X-Real-IP;

如:
set_real_ip_from 192.168.10.0/24;
set_real_ip_from 192.168.10.6;
real_ip_header X-Real-IP;

4.php获取ip代码
vi i.php
<?php
echo $_SERVER['REMOTE_ADDR'];

然后把i.php放进你网站根目录下,使用浏览器访问https://地址/i.php,就可以看到客户的真实ip地址了.






欢迎光临 黑帽联盟 (https://bbs.cnblackhat.com/) Powered by Discuz! X2.5