使用NGINX更改根路径

时间:2018-10-31 11:34:29

标签: apache nginx

当前,我在同一服务器上配置了两个项目。 使用NGINX,一个是在端口80上运行的python服务器。另一个是在端口5001上运行的apache服务器。

我在nginx.conf中做了以下更改。

server {
        listen          80;
        server_name     myIP;
        location / {
               proxy_pass http://unix:/home/user_1/Projects/test/test.sock;
        }
        location /somesubpathforphpproject {
        proxy_pass http://myIP:5001/;
        }
    }

当我导航到http://myIP/somesubpathforphpproject/时,我的PHP项目正常打开。但是,当我尝试遍历其他PHP页面时,浏览器显示This page isn’t workingmyIP is currently unable to handle this request.

0 个答案:

没有答案