9 Nginx location重点核心非常重要

1. 作用

 location指令的作用是可以根据用户请求的URI来执行不同的应用,其实就是根据用户请求的 网站地址URL匹配,匹配成功即进行相关的操作。

2. 语法

location使用的语法例子:


location [=|~|~*|^~] uri{
            …
}
解释


location    [=|~|~*|^~|@]   uri                {…}
指令      匹配标识       匹配的网站网址  匹配URI后要执行的配置段
       上述语法中的URI部分是关键,这个URI可以是普通的字符串地址路径或者是正则表达式,当匹配成功则执行后面大括号里面的相关指令。正则表达式的签名还可以有^或*等特殊的字符。 这两种特殊字符或~*匹配的区别为:

= 开头表示精确匹配
^~ 开头表示uri以某个常规字符串开头,理解为匹配 url路径即可。nginx不对url做编码,因此请求为/static/20%/aa,可以被规则^~ /static/ /aa匹配到(注意是空格)。
~ 开头表示区分大小写的正则匹配
~* 开头表示不区分大小写的正则匹配
!~和!~*分别为区分大小写不匹配及不区分大小写不匹配 的正则
/ 通用匹配,任何请求都会匹配到。

3. 匹配实例

location = / {
        [configuration A]
}

location / {
        [configuration B]
}

location /documents/ {
        [configuration C]
}

location ^~ /images/ {
        [configuration D]
}

location ~*\.(gif|jpg|jpeg)${
        [configuration E]
}

在这里插入图片描述

4. location实战

Nginx配置文件内容如下:


server {
    listen       90;
    server_name  www.linux.cmz.cn;

    location / {
        return 401;
    }

    location =/ {
          return 402;
    }

    location /documents/ {
          return 403;
    }

    location ^~/images/ {
        return 404;
    }

    location ~*\.(gif|jpg|jpeg)$ {
        return 500;
    }
    access_log  logs/www_access.log main;
}
然后以linux客户端为例对上述location匹配进行真实测试,配置hosts文件如下。

root@file:~# tail -1 /etc/hosts
127.0.0.1 www.linux.cmz.cn
实验结果如下

root@file:~# curl www.linux.cmz.cn:90/ -I
HTTP/1.1 402 Payment Required
Server: caimengzhi
Date: Tue, 28 May 2019 03:22:05 GMT
Content-Type: text/html
Content-Length: 165
Connection: keep-alive

root@file:~# curl www.linux.cmz.cn:90/index -I
HTTP/1.1 401 Unauthorized
Server: caimengzhi
Date: Tue, 28 May 2019 03:22:08 GMT
Content-Type: text/html
Content-Length: 177
Connection: keep-alive

root@file:~# curl www.linux.cmz.cn:90/documents/1.png -I
HTTP/1.1 403 Forbidden
Server: caimengzhi
Date: Tue, 28 May 2019 03:22:25 GMT
Content-Type: text/html
Content-Length: 151
Connection: keep-alive
root@file:~# curl www.linux.cmz.cn:90/images/11.gif -I
HTTP/1.1 404 Not Found
Server: caimengzhi
Date: Tue, 28 May 2019 03:22:40 GMT
Content-Type: text/html
Content-Length: 151
Connection: keep-alive

root@file:~# curl www.linux.cmz.cn:90/11.gif -I
HTTP/1.1 500 Internal Server Error
Server: caimengzhi
Date: Tue, 28 May 2019 03:22:49 GMT
Content-Type: text/html
Content-Length: 175
Connection: close

在这里插入图片描述
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值