Nginx配置文件中location配置的多种场景

nginx配置:,请求地址:http://127.0.0.1/test/api/findAll,实际上服务请求地址为:http://127.0.0.1:8088/api/findAll,规则:location最后有"/“,proxy_pass最后有”/" 结果为 proxy_pass + url中location最后一个斜线以后的部分,nginx配置:,请求地址:http://127.0.0.1/test/api/findAll,实际上服务请求地址为:http://127.0.0.1:8088//api/findAll,规则:location最后无"/“,proxy_pass最后有”/" 结果为 proxy_pass + / + url中location最后一个斜线以后的部分,nginx配置:,请求地址:http://127.0.0.1/test/api/findAll,实际上服务请求地址为:http://127.0.0.1:8088/test/api/findAll,规则:location最后有"/“,proxy_pass最后无”/" 结果为 proxy_pass + location + url中location后面的部分(不包含第一个/),nginx配置:,请求地址:http://127.0.0.1/test/api/findAll,实际上服务请求地址为:http://127.0.0.1:8088/test/api/findAll,规则:location最后无"/“,proxy_pass最后无”/" 结果为 proxy_pass + location + “/” + url中location后面的部分(不包含第一个/),以下配置的规则可以参考上面的场景。,nginx配置:,请求地址:http://127.0.0.1/test/api/findAll,实际上服务请求地址为:http://127.0.0.1:8088/server/api/findAll,nginx配置:,请求地址:http://127.0.0.1/test/api/findAll,实际上服务请求地址为:http://127.0.0.1:8088/server//api/findAll,nginx配置:,请求地址:http://127.0.0.1/test/api/findAll,实际上服务请求地址为:http://127.0.0.1:8088/serverapi/findAll,nginx配置:,请求地址:http://127.0.0.1/test/api/findAll,实际上服务请求地址为:http://127.0.0.1:8088/server/api/findAll,以上就是nginx配置文件里location中“/”相关配置的笔记。
返回顶部
跳到底部

Copyright 2011-2024 南京追名网络科技有限公司 苏ICP备2023031119号-6 乌徒帮 All Rights Reserved Powered by Z-BlogPHP Theme By open开发

请先 登录 再评论,若不是会员请先 注册