Nginx反向代理的location路径映射方式

本站所有内容来自互联网收集,仅供学习和交流,请勿用于商业用途。如有侵权、不妥之处,请第一时间联系我们删除!Q群:迪思分享

免费资源网 – https://freexyz.cn/

1、转发路径以端口结尾不添加根路径的情况

请求:

http://127.0.0.1/appStore/api/getTest

以下全部基于此请求进行映射说明,红色为推荐配置

配置1:

只替换到端口的那一部分

location ^~ /appStore { proxy_pass http://127.0.0.1:9222; }

实际:

http://127.0.0.1:9222/appStore/api/getTest

配置2:

location ^~ /appStore/ { proxy_pass http://127.0.0.1:9222; }

实际:

http://127.0.0.1:9222/appStore/api/getTest

配置3:

替换到标识的路径部分

location ^~ /appStore { proxy_pass http://127.0.0.1:9222/; }

实际:

http://127.0.0.1:9222//api/getTest

配置4:

location ^~ /appStore/ { proxy_pass http://127.0.0.1:9222/; }

实际:

http://127.0.0.1:9222/api/getTest

2、转发路径以端口结尾添加根路径的情况 

请求:

http://127.0.0.1/appStore/api/getTest

配置1:

替换到标识的路径部分

location ^~ /appStore { proxy_pass http://127.0.0.1:9222/appStore; }

实际:

http://127.0.0.1:9222/appStore/api/getTest

配置2:

location ^~ /appStore/ { proxy_pass http://127.0.0.1:9222/appStore; }

实际:

http://127.0.0.1:9222/appStoreapi/getTest

配置3:

location ^~ /appStore { proxy_pass http://127.0.0.1:9222/appStore/; }

实际:

http://127.0.0.1:9222/appStore//api/getTest

配置4:

location ^~ /appStore/ { proxy_pass http://127.0.0.1:9222/appStore/; }

实际:

http://127.0.0.1:9222/appStore/api/getTest

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持。


© 版权声明
THE END
★喜欢这篇文章吗?喜欢的话,麻烦动动手指支持一下!★
点赞15 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容