zoukankan      html  css  js  c++  java
  • Nginx Location规则

    1.1 Location规则

    语法规则: location [=|~|~*|^~] /uri/ {… }

    首先匹配 =,其次匹配^~,其次是按文件中顺序的正则匹配,最后是交给 /通用匹配。当有匹配成功时候,停止匹配,按当前匹配规则处理请求。

    符号

    含义

    =

    = 开头表示精确匹配

    ^~

    ^~开头表示uri以某个常规字符串开头,理解为匹配 url路径即可。nginx不对url做编码,因此请求为/static/20%/aa,可以被规则^~ /static/ /aa匹配到(注意是空格)

    ~

    ~ 开头表示区分大小写的正则匹配

    ~*

    ~* 开头表示不区分大小写的正则匹配

    !~和!~*

    !~和!~*分别为区分大小写不匹配及不区分大小写不匹配的正则

    /

    用户所使用的代理(一般为浏览器)

    $http_x_forwarded_for

    可以记录客户端IP,通过代理服务器来记录客户端的ip地址

    $http_referer

    可以记录用户是从哪个链接访问过来的

     

      匹配规则示例:

     

    location = / {  
        #规则A  
    }  
    location = /login {  
        #规则B  
    }  
    location ^~ /static/ {  
        #规则C  
    }  
    location ~ .(gif|jpg|png|js|css)$ {  
        #规则D  
    }  
    location ~* .png$ {  
        #规则E  
    }  
    location !~ .xhtml$ {  
        #规则F  
    }  
    location !~* .xhtml$ {  
        #规则G  
    }  
    location / {  
        #规则H  
    }  

    那么产生的效果如下:

    1. 访问根目录/,比如http://localhost/将匹配规则A

    2. 访问 http://localhost/login 将匹配规则B,http://localhost/register则匹配规则H

    3. 访问 http://localhost/static/a.html 将匹配规则C

    4. 访问 http://localhost/a.gif,http://localhost/b.jpg 将匹配规则D和规则E,但是规则D顺序优先,规则E不起作用,而http://localhost/static/c.png则优先匹配到规则C

    5. 访问 http://localhost/a.PNG 则匹配规则E,而不会匹配规则D,因为规则E不区分大小写。

    6. 访问 http://localhost/a.xhtml 不会匹配规则F和规则G,http://localhost/a.XHTML不会匹配规则G,因为不区分大小写。规则F,规则G属于排除法,符合匹配规则但是不会匹配到,所以想想看实际应用中哪里会用到。

    7. 访问 http://localhost/category/id/1111 则最终匹配到规则H,因为以上规则都不匹配,这个时候应该是nginx转发请求给后端应用服务器,比如FastCGI(php),tomcat(jsp),nginx作为方向代理服务器存在。

     

    1.2 实际常用规则

    #直接匹配网站根,通过域名访问网站首页比较频繁,使用这个会加速处理。

    #这里是直接转发给后端应用服务器了,也可以是一个静态首页

    # 第一个必选规则

    location = / {
    proxy_passhttp://tomcat:8080/index
    }

    # 第二个必选规则是处理静态文件请求,这是nginx作为http服务器的强项

    # 有两种配置模式,目录匹配或后缀匹配,任选其一或搭配使用

    location ^~ /static/ {
    # 请求/static/a.txt 将被映射到实际目录文件:/webroot/res/static/a.txt
    root /webroot/res/;
    }
    location ~* .(gif|jpg|jpeg|png|css|js|ico)${
    root /webroot/res/;
    }

    #第三个规则就是通用规则,用来转发动态请求到后端应用服务器

    #非静态文件请求就默认是动态请求,自己根据实际把握

    #毕竟目前的一些框架的流行,带.php,.jsp后缀的情况很少了

    location / {
    proxy_pass http://tomcat:8080/
    }

    1.3 Location解析过程

    总结:

    1、    先判断精准命中,如果命中,立即返回结果并结束解析过程。

    2、    判断普通命中,如果有多个命中,“记录”下来“最长”的命中结果(记录但不结束,最长的为准)。

    3、    继续判断正则表达式的解析结果,按配置里的正则表达式顺序为准,由上至下开始匹配,一旦匹配成功1个,立即返回结果,并结束解析过程。

    4、    普通命中顺序无所谓,是因为按命中的长短来确定。正则命中,顺序有所谓,因为是从前入往后命中的。

    拓展:localtion规则匹配顺序

    1)匹配顺序:先匹配普通location,再匹配正则location【跟配置顺序无关】

    2)“普通 location ”的匹配规则包含“最大前缀匹配”和“严格匹配”,其中“严格匹配”包含了普通location严格匹配和带=前缀的严格匹配;

        严格匹配:一,普通location,无任何前缀符号的;二,带=号前缀符号的严格匹配。

    “普通location匹配”最终会找到“最大前缀匹配”或者“严格匹配”的location,如果找到“严格匹配”则不再继续匹配其他规则;【跟配置顺序无关】

     例如:http://www.xxxyyy.com:8080/

    会严格匹配上[ configuration A ] 

    location  = / {
      # matches the query / only.
      [ configuration A ] 
    }
    location  ~ / {
      # matches any query, since all queries begin with /, but regular
      # expressions and any longer conventional blocks will be
      # matched first.
      [ configuration B ] 
    }

    http://www.kanronghua.com/documents/ 会严格匹配上[ configuration c] 

    location /documents/ {
      # matches any query beginning with /documents/ and continues searching,
      # so regular expressions will be checked. This will be matched only if
      # regular expressions don't find a match.
      [ configuration C ] 
    }

    3)“正则location”匹配规则找到第一个匹配的location,就不在继续匹配后面的location;【跟配置顺序有关】

    4)匹配完“普通 location ”后,有的时候需要继续匹配“正则 location ”,有的时候则不需要继续匹配“正则 location ”。

    两种情况下,不需要继续匹配正则 location :

    (1) 当普通 location 前面指定了“ ^~ ”,特别告诉 Nginx 本条普通 location 一旦匹配上,则不需要继续正则匹配;

    (2) 当普通location 恰好严格匹配上,不是最大前缀匹配,则不再继续匹配正则。

    严格匹配:一,普通location,无任何前缀符号的;二,带=号前缀符号的严格匹配。

    5)最终生效的location配置:

    普通location是“严格匹配”或者带有“ ^~ ”前缀,则直接使用普通location;如果既有普通location的最大前缀匹配,也有正则匹配,则正则匹配覆盖最大前缀匹配。

    例如:

    location  = / {
      # matches the query / only.
      [ configuration A ] 
    }
    location  / {
      # matches any query, since all queries begin with /, but regular
      # expressions and any longer conventional blocks will be
      # matched first.
      [ configuration B ] 
    }
    location /documents/ {
      # matches any query beginning with /documents/ and continues searching,
      # so regular expressions will be checked. This will be matched only if
      # regular expressions don't find a match.
      [ configuration C ] 
    }
    location ^~ /images/ {
      # matches any query beginning with /images/ and halts searching,
      # so regular expressions will not be checked.
      [ configuration D ] 
    }
    location ~* .(gif|jpg|jpeg)$ {
      # matches any request ending in gif, jpg, or jpeg. However, all
      # requests to the /images/ directory will be handled by
      # Configuration D.   
      [ configuration E ] 
    }

    请求示例,匹配的Location:

    • / -> configuration A
    • /index.html -> configuration B
    • /documents/document.html -> configuration C
    • /images/1.gif -> configuration D
    • /documents/1.jpg -> configuration E
  • 相关阅读:
    前端优化方法(全)
    前端工程化
    HTTP状态码
    TCP三次握手和四次挥手
    在浏览器输入url后并回车发生了哪些过程
    javascript异步编程
    为什么浏览器采用多进程模型
    LeetCode——最长回文子串?
    LeetCode——字符串的排列/找到字符串中所有字母异位词
    LeetCode——24 点游戏
  • 原文地址:https://www.cnblogs.com/ronghua/p/13043466.html
Copyright © 2011-2022 走看看