此nginx.conf上已经有一个运行中的网站,其代码如下:
server {
listen 80;
server_name example.com www.example.com;
access_log /var/log/nginx/example.log;
location / {
root /home/example/live/dist;
try_files $uri $uri/ /index.html;
#proxy_pass http://localhost:3001;
}
}
example.com
通过Remote Address: 139.59.89.249:80
打开,并且运行良好。
现在,我必须上传第二个项目,并且希望通过IP地址(例如http://139.59.89.249:80/project1
或http://139.59.89.249:AnyPort/project1
来访问它。我该如何配置呢?