nginx中文翻译: location 指令

来源:互联网 发布:电脑玩游戏网络延迟 编辑:程序博客网 时间:2024/04/29 12:32

nginx中文翻译: location 指令

nginx , loc ation
location
syntax: location [=|~|~*|^~] /uri/ { … }
语法:location [=|~|~*|^~] /uri/ { … }
default: no
默认:否
context: server
上下文:server

This directive allows different configurations depending on the URI. It can be
configured using both conventional strings and regular expressions. To use
regular expressions, you must use the prefix ~* for case insensitive match
and ~ for case sensitive match.
这个指令随URL不同而接受不同的结构。你可以配置使用常规字符串和正则表达式。如果使
用正则表达式,你必须使用 ~* 前缀选择不区分大小写的匹配或者 ~ 选择区分大小写的匹
配。

To determine which location directive matches a particular query, the
conventional strings are checked first. C onventional strings match the
beginning portion of the query and are case-sensitive - the most specific
match will be used (see below on how nginx determines this). Afterwards,
regular expressions are checked in the order defined in the configuration file.
The first regular expression to match the query will stop the search. If no
regular expression matches are found, the result from the convention string
search is used.
确定 哪个location 指令匹配一个特定指令,常规字符串第一个测试。常规字符串匹配请求的
开始部分并且区分大小写,最明确的匹配将会被使用(查看下文明白 nginx 怎么确定它)。
然后正则表达式按照配置文件里的顺序测试。找到第一个比配的正则表达式将停止搜索。如
果没有找到匹配的正则表达式,使用常规字符串的结果。

There are two ways to modify this behavior. The first is to use the prefix “=”,
which matches an exact query only. If the query matches, then searching
stops and the request is handled immediately. For example, if the request “/”
occurs frequently, then using “location = /” will expedite the processing of this
request.
有两个方法修改这个行为。第一个方法是使用 “=”前缀,将只执行严格匹配。如果这个查询
匹配,那么将停止搜索并立即处理这个请求。例子:如果经常发生”/”请求,那么使用
“location = /” 将加速处理这个请求。

The second is to use the prefix ^~. This prefix is used with a conventional
string and tells nginx to not check regular expressions if the path provided is a
match. For instance, “location ^~ /images/” would halt searching if the query
begins with /images/ - all regular expression directives would not be checked.
第二个是使用 ^~ 前缀。如果把这个前缀用于一个常规字符串那么告诉nginx 如果路径匹配
那么不测试正则表达式。

Furthermore it is important to know that NGINX does the comparison not URL
encoded, so if you have a URL like “/images/%20/test” then use “/images/
/test” to determine the location.
而且它重要在于 NGINX 做比较没有 URL 编码,所以如果你有一个 URL 链接’/images
/%20/test’ , 那么使用 “images/ /test” 限定location。

To summarize, the order in which directives are checked is as follows:
总结,指令按下列顺序被接受:
1. Directives with the = prefix that match the query exactly. If found,
searching stops.
1. = 前缀的指令严格匹配这个查询。如果找到,停止搜索。
2. All remaining directives with conventional strings, longest match first. If this
match used the ^~ prefix, searching stops.
2. 剩下的常规字符串,长的在前。如果这个匹配使用 ^~ 前缀,搜索停止。
3. Regular expressions, in order of definition in the configuration file.
3. 正则表达式,按配置文件里的顺序。
4. If #3 yielded a match, that result is used. Else the match from #2 is used.
4. 如果第三步产生匹配,则使用这个结果。否则使用第二步的匹配结果。
Example:
例子:
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 ^~ /images/ {
# matches any query beginning with /images/ and halts searching,
# so regular expressions will not be checked.
# 匹配任何已 /images/ 开头的任何查询并且停止搜索。任何正则表达式将不会被测试。
[ configuration C ]
}
location ~* /.(gif|jpg|jpeg)$ {
# matches any request ending in gif, jpg, or jpeg. However, all
# requests to the /images/ directory will be handled by
# C onfiguration C .
# 匹配任何已 gif、jpg 或 jpeg 结尾的请求。然而所有 /images/ 目录的请求将使用
C onfiguration C。
[ configuration D ]
}
Example requests:
例子请求:
*
/ -> configuration A
*
/documents/document.html -> configuration B
*
/images/1.gif -> configuration C
*
/documents/1.jpg -> configuration D
Note that you could define these 4 configurations in any order and the results
would remain the same.
注意:按任意顺序定义这4个配置结果将仍然一样。


 

 
 
 原文地址 http://bbs.linuxtone.org 

原创粉丝点击