当前位置: 首页 > article >正文

nginx代理 proxy_pass

一 、代理后location不会被包含

        location /master {
            proxy_pass http://127.0.0.1:81/api/master;
        }

请求地址:

http://localhost/master/search

代理后的地址:

http://127.0.0.1:81/api/master/search

二、代理后location会被包含

        location /master {
            proxy_pass http://127.0.0.1:81;
        }

请求地址:

http://localhost/master/search

 代理后的地址:

http://127.0.0.1:81/master/search

三、代理后location会被包含

        location /master/ {
            proxy_pass http://127.0.0.1:81;
        }

请求地址:

http://localhost/master/search

 代理后的地址:

http://127.0.0.1:81/master/search

四、代理后location不会被包含

        location /master/ {
            proxy_pass http://127.0.0.1:81/;
        }

 

请求地址:

http://localhost/master/search

 代理后的地址:

http://127.0.0.1:81/search

 


http://www.kler.cn/a/383971.html

相关文章:

  • Transformer和BERT的区别
  • 【自学笔记】神经网络(1)
  • SpringMVC项目转为SpringBoot项目
  • 为什么Uptime+Kuma本地部署与远程使用是网站监控新选择?
  • Python | Leetcode Python题解之第537题复数乘法
  • 计算机专业开题报告写法,该怎么写好?
  • 使用 OpenCV 和 Pyzbar 检测二维码和条码
  • 分享一个游戏源码下载网站
  • TLS协议基本原理与Wireshark分析_wireshark分析tls协议
  • HarmonyOS NEXT 应用开发实战:十一、知乎日报项目接口使用指南
  • 【工具】随机邮件地址生成器
  • RKNN MAC利用率
  • 一七五、HTML 不同类型的事件及其说明和示例
  • std::copy
  • Vue实现登录功能
  • js 两日期天数差、某一日期前推后推固定天数后的日期、时间格式化
  • WPF中的INotifyPropertyChanged接口
  • 蓝桥杯顺子日期(填空题)
  • 论文阅读笔记:Image Processing GNN: Breaking Rigidity in Super-Resolution
  • yakit中的fuzztag
  • Vue3中useRouter 怎么在Vue 组件外使用
  • [OS]vma? trap? Sys_mmap根据思路来实现!!
  • 2.3立项【硬件产品立项的核心内容】
  • UI界面设计入门:打造卓越用户体验
  • CAN通信协议 HAL库学习
  • 【数据集】【YOLO】【目标检测】安全帽识别数据集 22789 张,YOLO安全帽佩戴目标检测实战训练教程!