美文网首页
nginx配置无根tomcat应用代理出现双斜杠问题

nginx配置无根tomcat应用代理出现双斜杠问题

作者: 孤帆一点 | 来源:发表于2018-05-03 16:24 被阅读0次
问题描述-nginx日志 问题描述-后台(spring-security) 负载均衡配置 反向代理配置 访问url配置

第二天发现以上配置无法使用,于是给访路径加上/,然后更改nginx配置为


nginx最终配置
    location /api{
            proxy_pass       http://test;
            rewrite /api/(.+)$ /$1 break;
            proxy_set_header   Host             $proxy_host;
            proxy_set_header   X-Real-IP        $remote_addr;
            proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
            proxy_pass_request_headers              on;
    }

参考:
https://www.cnblogs.com/lemon-le/p/7800879.html
https://www.jianshu.com/p/89201a82528d
https://www.oschina.net/question/54100_30402

相关文章

网友评论

      本文标题:nginx配置无根tomcat应用代理出现双斜杠问题

      本文链接:https://www.haomeiwen.com/subject/koclrftx.html