host

ngin host常用配置

host常用匹配 # 匹配host等于test.xxxx.com跳转到其他地址 if ($host ~* 'test.xxxx.com') {rewrite ^/(.*)$ http://111.112.113.114:80 last; } 关键字:Nginx, hosts, 配置, host

ngin获取用户真实ip

配置 location /tech/ { proxy_pass http://blog_servers/tech/ ;proxy_set_header X-Real-IP $remote_addr; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for