聊聊nginx的index/try_files/location指令的使用

对nginx配置反向web服务,就经常会遇到这一段段配置


image.png

不清楚这几个指令还真的是很难下手

一,index

来自于官网的解释: http://nginx.org/en/docs/http/ngx_http_index_module.html#directives
Syntax: index file ...;
Default: index index.html;
Context: http, server, location
Defines files that will be used as an index. The file name can contain variables. Files are checked in the specified order. The last element of the list can be a file with an absolute path. Example:
index index.$geo.html index.0.html /index.html;
It should be noted that using an index file causes an internal redirect, and the request can be processed in a different location. For example, with the following configuration:
location = / {
index index.html;
}
location / {
...
}
a “/” request will actually be processed in the second location as “/index.html”.

还是挺好理解的: 就是为文件配置默认的索引值.
换句话说:如果请求的路径中找不到对应的文件就会根据index配置的文件名依次来查找这个路径下是否有这个文件,有就直接返回,例如,根据上图的index的配置,如果请求的路径:http://www.test.com/a/b 如果这个路径下没有b这个文件,就会走index 继续查找 http://www.test.com/a/b/index.html 有就会返回,没有就返回404

二,try_files

直接上官网解释

image.png

附上官网链接:http://nginx.org/en/docs/http/ngx_http_core_module.html#try_files

location / {
try_files $uri $uri/ /index.php?_url=$uri&$args;
}

我们拿上面这个配置来分析一下,当用户请求 http://localhost/example 时,这里的 $uri 就是 /example。
try_files 会到硬盘里尝试找这个文件。如果存在名为 $root/example(其中 $root 是项目代码安装目录)的文件,就直接把这个文件的内容发送给用户。
如果目录中没有叫 example 的文件。然后就看 $uri/,增加了一个 /,也就是看有没有名为 /$root/example/ 的目录。 如果也找不到,会对最后一个参数进行一个内部重定向。且只有最后一个参数可以引起一个内部重定向(最后一个参数是请求URI且必须存在,否则将会出现内部500错误),try_files 的最后一个选项 /index.php,发起一个内部 “子请求”,也就是相当于 nginx 发起一个 HTTP 请求到 http://localhost/index.php。

##也可以用变量来实现一个代理跳转
location / {
try_files $uri $uri/  @nginxtest;
}
loaction @nginxtest{
proxy_pass http://127.0.0.1:8812
}

三,location

对于location 的用法,掌握对应的匹配参数和搜索规则基本上就可以满足大部分的使用场景

首先要注意一点,location匹配的是$url ,即 http://localhost/example?a=1&b=2 时,这里的 $uri 就是 /example。

image.png

盗用一下图(后面会备注其出处)

匹配顺序规则:

1,如果可以匹配到 = 或者 ^~ ,那么就会执行该location的指令(优先级最高),否则进入第二点

2,多个正则匹配(*)中,以第一个匹配到的为准,也就是会执行第一个匹配到的正则的location的指令,如果都没有进入第三点

3,匹配普通模式,普通模式已最长前缀匹配优先级最高

location的具体使用可以看参考这篇文章(也是上面图片的出处): https://www.nginx.cn/5494.html

你可能感兴趣的:(聊聊nginx的index/try_files/location指令的使用)