NGINX反向代理两个不同的服务器作为后端

时间:2019-02-01 05:16:57

标签: nginx-reverse-proxy

我刚接触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;
  }

}

有人建议我在做什么错吗?

0 个答案:

没有答案