ngin host常用配置 host常用匹配 # 匹配host等于test.xxxx.com跳转到其他地址 if ($host ~* 'test.xxxx.com') {rewrite ^/(.*)$ http://111.112.113.114:80 last; }
ngin获取用户真实ip 配置 location /tech/ { proxy_pass http://blog_servers/tech/ ;proxy_set_header X-Real-IP $remote_addr; proxy_set_header Hos