我刚接触NGINX。
我将NGINX设置为来自subdomain.example.com
的反向代理,这会影响内部IP 192.168.xxx.x。效果很好。
现在,我想访问网络中的另一台服务器,将其称为192.168.xxx.Y。
Y应该在subdomain.example.com/Y下可用。
如何配置NGINX?
这是我的第一次尝试-不起作用:
server {
listen 80;
server_name subdomain.example.com;
location / {
proxy_pass http://192.168.xxx.x:80;
}
location /Y {
proxy_pass http://192.168.xxx.Y:377;
}
}
有人建议我在做什么错吗?