基本上我在尝试重定向时遇到问题http://localhost/report我希望它重定向到我的应用程序,该应用程序有路由/但我得到Cannot GET /report/
我需要添加什么来添加到我的nginx.conf中?
就是这样:
http {
upstream nodeapp {
server 127.0.0.1:9876;
keepalive 64;
}
server {
listen 80;
location /report {
proxy_pass http://nodeapp;
}
}
}
答案 0 :(得分:1)
location /report/ {
# this slash ^ and this V
proxy_pass http://nodeapp/;
}
阅读proxy_pass
和location
上的文档。