test.conf
在一个名为的文件中/etc/nginx/conf.d
,我有:
server {
listen 80;
server_name test;
root /var/www;
location /some/path/ {
proxy_pass http://www.example.com/link/;
}
}
当sudo nginx -s reload
我尝试去http://1xx.xx.xx.xx/我得到了 usaul nginx 欢迎页面,但在
http://1xx.xx.xx.xx/some/path/
我有一个:
404 Not Found nginx/1.18.0 (Ubuntu)
我已经尝试了所有方法,但我仍然不明白问题出在哪里。