一 实操步骤
1.1 架构图
1.2 配置原则
匹配准则:
当proxy_pass代理地址端口后有目录(包括 / 和/xxx),相当于是绝对根路径,则 nginx 不会把 location 中匹配的路径部分代理走;
当proxy_pass代理地址端口后无任何内容,可以理解为相对路径,则nginx会把location中匹配的路径部分代理走;
http://localhost:9001/admin/acl/index/login =》http://localhost:8201/admin/acl/index/login
http://localhost:9001/admin/sys/ware/findAllList =》http://localhost:8202/admin/sys/ware/findAllList
https://blog.csdn.net/u011066470/article/details/126275847