nginx多层反向代理获取客户端真实ip
访问路径: 用户 --> www.chinasoft.cn(nginx反向代理) --> www.chinasoft.com(nginx反向代理) --> python服务端程序 经过多层代理 第一层代理: # cat /usr/local/nginx/conf/vhost.d/ www.chinasoft.cn.conf server { listen 80 ; server_name www.chinasoft.cn chinasoft.cn; access_log /data/www/logs/nginx_log/access/ chinasoft.cn_access.log main ; error_log /data/www/logs/nginx_log/error/ chinasoft.cn_error.log ; #root /data/www/vhosts/chinasoft.cn/ httpdocs ; index index.html index.shtml index.php ; #include rewrite.d / chinasoft.cn.conf ; error_page 404 403 / 404 .html; rewrite ^/(.*)$ https: // www.chinasoft.cn/$1 permanent; #跳转到Https