NGINX,上游和位置,如何重定向为绝对URL?

时间:2015-12-01 12:16:22

标签: nginx

基本上我在尝试重定向时遇到问题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;
    }
  }
}

1 个答案:

答案 0 :(得分:1)

location /report/ {
  # this slash  ^ and this V
  proxy_pass http://nodeapp/;
}

阅读proxy_passlocation上的文档。