当前,我在同一服务器上配置了两个项目。 使用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 working
。 myIP is currently unable to handle this request.