IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 系统运维 -> nginx之root alias proxy_pass测试 -> 正文阅读

[系统运维]nginx之root alias proxy_pass测试


proxy_pass官网:http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_pass

参考链接:

  • https://blog.csdn.net/wyl9527/article/details/89671506
  • https://blog.csdn.net/u010433704/article/details/99945557

1,配置文件

[root@k8s-node02 conf.d]# cat test.conf 
#######第一段
server {
        listen       80;
        root   /usr/share/nginx/html;        
#
location / {
           index index.html;
        }
#
location /test1 {
          root /usr/share/nginx/html;
          index test1.html;
         }

location /test2/ {
          root /usr/share/nginx/html;
          index test2.html;
         }

#
location /alias {
           alias /usr/share/nginx/html/alias/a/;
           index alias.html;
        }
#

location /proxyf/ {
           proxy_pass http://192.168.128.221/;
        }
location /proxyg/ {
           proxy_pass http://192.168.128.221;
        }

#
location /proxya {
           proxy_pass http://192.168.128.221:8001/;
        }
location /proxyb {
           proxy_pass http://192.168.128.221:8001;
        }

location /proxyc/ {
           proxy_pass http://192.168.128.221:8001/passc/;
        }
location /proxyd/ {
           proxy_pass http://192.168.128.221:8001/passd;
        }

location /proxye/ {
           proxy_pass http://192.168.128.221:8001;
        }
    }

#######第二段
server {
        listen  8001;
        root   /usr/share/nginx/8001/;        
location / {
           index index.html;
        }
    }

2,静态文件

2.1 目录结构

[root@k8s-node02 nginx]# pwd
/usr/share/nginx

[root@k8s-node02 nginx]# tree html
html
├── alias
│   └── a
│       └── alias.html
├── alias.html
├── index.html
├── proxyg
│   └── index.html
├── test1
│   └── test1.html
├── test1.html
├── test2
│   └── test2.html
└── test2.html

5 directories, 8 files
[root@k8s-node02 nginx]# tree 8001/
8001/
├── index.html
├── passc
│   └── index.html
├── passdindex.html
├── proxyb
│   └── index.html
└── proxye
    └── index.html

2.2 具体内容

[root@k8s-node02 nginx]# cat html/alias/a/alias.html 
alias/a/alias.html
[root@k8s-node02 nginx]# cat html/alias.html 
alias.html
[root@k8s-node02 nginx]# cat html/index.html 
index
[root@k8s-node02 nginx]# cat html/proxyg/index.html 
proxyg/index.html
[root@k8s-node02 nginx]# cat html/test1/test1.html 
test1/test1.html
[root@k8s-node02 nginx]# cat html/test1.html 
test1.html
[root@k8s-node02 nginx]# cat html/test2/test2.html 
test2/test2.html
[root@k8s-node02 nginx]# cat html/test2.html 
test2.html
[root@k8s-node02 nginx]# cat 8001/index.html 
8001.html
[root@k8s-node02 nginx]# cat 8001/passc/index.html 
80/passc/passc.html
[root@k8s-node02 nginx]# cat 8001/passdindex.html 
80/passdindex.html
[root@k8s-node02 nginx]# cat 8001/proxyb/index.html 
8001/proxyb/proxyb.html
[root@k8s-node02 nginx]# cat 8001/proxye/index.html 
80/proxye/proxye.html

3,测试

3.1 root和alias的区别

[root@k8s-node02 ~]# curl 192.168.128.221
index
[root@k8s-node02 ~]# curl 192.168.128.221:8001
8001.html
[root@k8s-node02 ~]# curl 192.168.128.221:80/test1/
test1/test1.html
[root@k8s-node02 ~]# curl 192.168.128.221:80/alias/
alias/a/alias.html

结论:

  • 当我们访问 http://192.168.128.221:80/test1/,实际访问的是/usr/share/nginx/html/test1/test1.html
  • 当我们访问 http://192.168.128.221:80/alias/,实际访问的是/usr/share/nginx/html/alias/a/alias.html

3.2 proxy_pass 中的url带不带/的区别

在nginx中配置proxy_pass代理转发时,如果在proxy_pass后面的url加/,表示绝对根路径;如果没有/,表示相对路径,把匹配的路径部分也给代理走。

3.2.1 带 /

location /proxya {
           proxy_pass http://192.168.128.221:8001/;
        }
[root@k8s-node02 ~]# curl 192.168.128.221:80/proxya/index.html
8001.html

结论:

  • 会被代理到 http://192.168.128.221:8001/index.html 这个url

3.2.2 不带 /

location /proxyb {
           proxy_pass http://192.168.128.221:8001;
        }
[root@k8s-node02 ~]# curl 192.168.128.221:80/proxyb/index.html
8001/proxyb/proxyb.html

结论:

  • 会被代理到 http://192.168.128.221:8001/proxyb/index.html 这个url

3.2.3 带有 /passc/

location /proxyc/ {
           proxy_pass http://192.168.128.221:8001/passc/;
        }
[root@k8s-node02 ~]# curl 192.168.128.221:80/proxyc/index.html
80/passc/passc.html

结论:

  • 会被代理到 http://192.168.128.221:8001/passc/index.html 这个url

3.2.4 带有 /passd

location /proxyd/ {
           proxy_pass http://192.168.128.221:8001/passd;
        }
[root@k8s-node02 ~]# curl 192.168.128.221:80/proxyd/index.html
80/passdindex.html

结论:

  • 会被代理到 http://192.168.128.221:8001/passdindex.html 这个url

补充:

location /proxye/ {
           proxy_pass http://192.168.128.221:8001;
        }
[root@k8s-node02 ~]# curl 192.168.128.221:80/proxye/index.html
80/proxye/proxye.html

结论:

  • location 后面接的,带不带/区别不大,为规范,建议带 /
  系统运维 最新文章
配置小型公司网络WLAN基本业务(AC通过三层
如何在交付运维过程中建立风险底线意识,提
快速传输大文件,怎么通过网络传大文件给对
从游戏服务端角度分析移动同步(状态同步)
MySQL使用MyCat实现分库分表
如何用DWDM射频光纤技术实现200公里外的站点
国内顺畅下载k8s.gcr.io的镜像
自动化测试appium
ctfshow ssrf
Linux操作系统学习之实用指令(Centos7/8均
上一篇文章      下一篇文章      查看所有文章
加:2021-12-11 16:07:48  更:2021-12-11 16:09:41 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/16 4:51:57-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码