欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

部署nginx遇到的问题_重定向次数过多或者干脆找不到路径

程序员文章站 2022-06-09 12:06:03
...

先贴一下nginx配置

location / {
                proxy_pass  http://mgmtsrv1.yuecloud.perf:19084/business;
                proxy_set_header Host $host;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-For  $proxy_add_x_forwarded_for;
        }

只配了这一段,访问一个域名下的/就会跳转到http://mgmtsrv1.yuecloud.perf:19084/business;
但是在后台代码里写了一个访问任意资源时如果未登陆,先重定向到/business/login进行登陆
这就会产生一个死循环,前台访问域名进入后台代码,后台重定向到域名/business/login,前台检测到访问域名了就把/business/login转成/businessbusiness/login了,因为访问了后台没有登陆,然后后台又会重定向…如此就会产生一个死循环,解决办法:
再做一层映射,把域名/business访问直接转到后台代码的/business路径下

location /business{
              proxy_pass http://mgmtsrv1.yuecloud.perf:19084/business;
              proxy_set_header Host $host;
              proxy_set_header X-Real-IP $remote_addr;
              proxy_set_header X-Forwarded-For  $proxy_add_x_forwarded_for;
      }
就可以解决了,前台访问域名后,后台重定向到域名/business/login中,然后nginx给他映射到后台的/business/login,就可以解决了.
相关标签: 问题总结