当我直接在浏览器栏中输入反向代理的 IP 地址时,它会执行重定向。
/etc/hosts
当使用通过条目解析的 URL 时,203.0.113.2 git.example.com
会显示“欢迎来到 Ngnix 页面”。有任何想法吗?这是配置:
server {
listen 80;
server_name git.example.com;
proxy_set_header X-Real-IP $remote_addr; # pass on real client IP
location / {
proxy_pass http://203.0.113.1:3000;
}
}
一件有趣的事情是我可以导航到例如:
http://203.0.113.2/issues
如果我随后进行更改,203.0.113.2
我git.example.com
会得到 Nginx 的“404 not found”页面。