Nginx服务器配置

时间:2018-01-17 10:35:04

标签: node.js nginx

我正在尝试配置nginx。我的项目中有2个node.js服务器。首先是工作。这是它的nginx配置文件:

server {
    listen       80;
    server_name  www.myhоst.com

    location / {
        root /home/my-project/server1/app;
        index index.html index.htm;
        proxy_pass http://server1_ip:8080/; 
    }

       location /server_2 {
        root /home/my-project/server2/app;
        index index.html index.htm;
        proxy_pass http://server2_ip:5050/; 
    }

}

当我打开www.myhоst.com/时,第一台服务器正常运行,但是当我通过www.myhost.com/server2链接时第二台服务器没有正常运行。我怎么解决它?

0 个答案:

没有答案