You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A location can either be defined by a prefix string, or by a regular expression. Regular expressions are specified with the preceding “*” modifier (for case-insensitive matching), or the “” modifier (for case-sensitive matching). To find location matching a given request, nginx first checks locations defined using the prefix strings (prefix locations). Among them, the location with the longest matching prefix is selected and remembered. Then regular expressions are checked, in the order of their appearance in the configuration file. The search of regular expressions terminates on the first match, and the corresponding configuration is used. If no match with a regular expression is found then the configuration of the prefix location remembered earlier is used.
If the longest matching prefix location has the “^~” modifier then regular expressions are not checked.
Also, using the “=” modifier it is possible to define an exact match of URI and location. If an exact match is found, the search terminates. For example, if a “/” request happens frequently, defining “location = /” will speed up the processing of these requests, as search terminates right after the first comparison. Such a location cannot obviously contain nested locations.
前言
Location 是 Nginx 中一个非常核心的配置,这篇重点讲解一下 Location 的配置问题以及一些注意事项。
语法
关于 Location,举个简单的配置例子:
大致的意思是,当你访问
www.yayujs.com
的80
端口的时候,返回/home/www/ts/index.html
文件。我们看下 Location 的具体语法:
重点看方括号中的
[ = | ~ | ~* | ^~ ]
,其中|
分隔的内容表示你可能会用到的语法,其中:=
表示精确匹配,比如:~
表示区分大小写的正则匹配,比如:~*
表示不区分大小写的正则匹配^~
表示 uri 以某个字符串开头而当你不使用这些语法的时候,只写 uri 的时候:
/
表示通用匹配:匹配顺序
当存在多个 location 的时候,他们的匹配顺序引用 Nginx 官方文档就是:
翻译整理后就是:
location 的定义分为两种:
~*
和~
修饰符的而匹配 location 的顺序为:
=
修饰符的 URI,则立刻停止匹配^~
修饰符的 URI,则也立刻停止匹配。再总结一下就是:
在顺序上,前缀字符串顺序不重要,按照匹配长度来确定,正则表达式则按照定义顺序。
在优先级上,
=
修饰符最高,^~
次之,再者是正则,最后是前缀字符串匹配。我们举几个简单的例子复习下:
root 与 alias 的区别
当我们这样设置
root
的时候:当请求
/i/top.gif
,/data/w3/i/top.gif
会被返回。当我们这样设置
alias
的时候:当请求
/i/top.gif
,/data/w3/images/top.gif
会被返回。乍一看两者很像,但细一看,就能看出两者的区别,root 是直接拼接
root
+location
而 alias 是用alias
替换location
,所以 root 中最后的路径里有/i/
,而 alias 中最后的路径里没有/i/
。所以如果你这样使用 allias 定义一个路径:
其实使用 root 会更好:
server 和 location 中的 root
server 和 location 中都可以使用 root,举个例子:
如果两者都出现,是怎样的优先级呢?
简单的来说,就是就近原则,如果 location 中能匹配到,就是用 location 中的 root 配置,忽略 server 中的 root,当 location 中匹配不到的时候,则使用 server 中的 root 配置。
系列文章
博客搭建系列是我至今写的唯一一个偏实战的系列教程,讲解如何使用 VuePress 搭建博客,并部署到 GitHub、Gitee、个人服务器等平台。
微信:「mqyqingfeng」,加我进冴羽唯一的读者群。
如果有错误或者不严谨的地方,请务必给予指正,十分感谢。如果喜欢或者 有所启发,欢迎 star,对作者也是一种鼓励。
The text was updated successfully, but these errors were encountered: