0
基本上我有一個問題,當我嘗試重定向http://localhost/report我想它重定向到我的應用程序,都有一個路由/而是我得到Cannot GET /report/
NGINX,上游和位置,如何重定向爲絕對URL?
我有什麼要添加到我的nginx.conf?
這裏是:在proxy_pass
和location
http {
upstream nodeapp {
server 127.0.0.1:9876;
keepalive 64;
}
server {
listen 80;
location /report {
proxy_pass http://nodeapp;
}
}
}
我想你只需要在'proxy_pass'指令中添加一個斜槓:'proxy_pass http:// nodeapp /;' –