1. 目标
nginx 反向代理,路径映射的过程是什么?如何配置路径映射规则?
2、location 路径匹配
2.1 匹配规则:
location 路径正则匹配:
符号 | 说明 |
| 正则匹配,区分大小写 |
| 正则匹配,不区分大小写 |
| 普通字符匹配,如果该选项匹配,则,只匹配改选项,不再向下匹配其他选项 |
| 普通字符匹配,精确匹配 |
| 定义一个命名的 location,用于内部定向,例如 error_page,try_files |
2.2 匹配优先级:
路径匹配,优先级:(跟 location 的书写顺序关系不大)
- 精确匹配:
=
前缀的指令严格匹配这个查询。
如果找到,停止搜索。 - 普通字符匹配:
所有剩下的常规字符串,最长的匹配。
如果这个匹配使用^〜
前缀,搜索停止。 - 正则匹配:
正则表达式,在配置文件中定义的顺序,匹配到一个结果,搜索停止; - 默认匹配:
如果第3条规则产生匹配的话,结果被使用。
否则,如同从第2条规则被使用。
2.3 举例
通过一个实例,简单说明一下匹配优先级:
location = / {
# 精确匹配 / ,主机名后面不能带任何字符串
[ configuration A ]
}
location / {
# 因为所有的地址都以 / 开头,所以这条规则将匹配到所有请求
# 但是正则和最长字符串会优先匹配
[ configuration B ]
}
location /documents/ {
# 匹配任何以 /documents/ 开头的地址,匹配符合以后,还要继续往下搜索
# 只有后面的正则表达式没有匹配到时,这一条才会采用这一条
[ configuration C ]
}
location ~ /documents/Abc {
# 匹配任何以 /documents/ 开头的地址,匹配符合以后,还要继续往下搜索
# 只有后面的正则表达式没有匹配到时,这一条才会采用这一条
[ configuration CC ]
}
location ^~ /images/ {
# 匹配任何以 /images/ 开头的地址,匹配符合以后,停止往下搜索正则,采用这一条。
[ configuration D ]
}
location ~* \.(gif|jpg|jpeg)$ {
# 匹配所有以 gif,jpg或jpeg 结尾的请求
# 然而,所有请求 /images/ 下的图片会被 config D 处理,因为 ^~ 到达不了这一条正则
[ configuration E ]
}
location /images/ {
# 字符匹配到 /images/,继续往下,会发现 ^~ 存在
[ configuration F ]
}
location /images/abc {
# 最长字符匹配到 /images/abc,继续往下,会发现 ^~ 存在
# F与G的放置顺序是没有关系的
[ configuration G ]
}
location ~ /images/abc/ {
# 只有去掉 config D 才有效:先最长匹配 config G 开头的地址,继续往下搜索,匹配到这一条正则,采用
[ configuration H ]
}
location ~* /js/.*/\.js
按照上面的location写法,以下的匹配示例成立:
/
-> config A:
精确完全匹配,即使/index.html也匹配不了/downloads/download.html
-> config B:
匹配B以后,往下没有任何匹配,采用B/images/1.gif
-> configuration D:
匹配到F,往下匹配到D,停止往下/images/abc/def
-> config D:
最长匹配到G,往下匹配D,停止往下你可以看到 任何以/images/开头的都会匹配到D并停止,FG写在这里是没有任何意义的,H是永远轮不到的,这里只是为了说明匹配顺序/documents/document.html
-> config C:
匹配到C,往下没有任何匹配,采用C/documents/1.jpg
-> configuration E:
匹配到C,往下正则匹配到E/documents/Abc.jpg
-> config CC:
最长匹配到C,往下正则顺序匹配到CC,不会往下到E
延伸。。。
1. 静态资源缓存:
# 缓存设置 (注意if的用法)
location ~ .*\.(gif|jpg|jpeg|bmp|png|ico|txt|js|css)$ {
root /usr/share/nginx/html;
access_log off;
set $flag 0;
if ($request_uri ~ "(version.js|envConsole.js)") {
set $flag 1;
}
if ($flag = 0) {
expires 1h;
}
if ($flag = 1) {
add_header Cache-Control no-cache;
}
}
location ^~ /xxx/ {
add_header Access-Control-Allow-Methods 'GET, POST, OPTIONS';
alias /usr/share/nginx/html/xxx/;
# 注意这里的顺序 break 后,不在往下找,不再匹配下面的if,否则还会走下面的 if(目的是如果匹配到abc.js或者efg.js则走此配置,不缓存,不在往下找;
if ($request_filename ~ "(abc.js|efg.js)") {
add_header Cache-Control "private, no-store, no-cache, must-revalidate, proxy-revalidate";
break;
}
#如果是其他名的js则继续走下面if,缓存7天)
if ($request_filename ~* .*\.(?:gif|jpg|jpeg|bmp|png|ico|txt|css|js|svg)$) {
expires 7d;
}
try_files $uri $uri/ /index.html;
}
2、error_page 自定义error.conf (自定义路径,我放在了/etc/nginx/user.d/目录下了,user.d是新建的目录)
# *****************错误页面定义****************** #
# 只需在 server 里引入:
# include /etc/nginx/user.d/*.conf; 即可
error_page 404 @404error;
location @404error {
#rewrite ^(.*) $scheme://$host:$server_port/errorpage/40x break;
rewrite ^(.*) $scheme://$host/errorpage/40x/ break;
}
error_page 500 502 503 504 @500error;
location @500error {
#rewrite ^(.*) $scheme://$host:$server_port/errorpage/50x break;
rewrite ^(.*) $scheme://$host/errorpage/50x/ break;
}
location ^~ /errorpage/40x/ {
alias /usr/share/nginx/html/error_page/;
index 404.html;
expires 30d;
}
location ^~ /errorpage/50x/ {
alias /usr/share/nginx/html/error_page/;
index 50x.html;
expires 30d;
}
server中引入:
server {
listen 80;
server_name X.X.X.X;
root /usr/share/nginx/html; # Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
include /etc/nginx/user.d/error.conf;
location / {
add_header Access-Control-Allow-Origin http://xxx.xx.com;
add_header Access-Control-Allow-Methods 'GET, POST, OPTIONS';
root /opt/xxx/app;
try_files $uri $uri/ /index.html;
}
location ~^/(images|image|javascript|js|css|static|json|templets|upload)/ {
root /opt/xxx/app;
access_log off;
expires 30d;
}
}
**************************************************************************************
当你的才华还撑不起你的野心的时候,你就应该静下心来学习;当你的能力还驾驭不了你的目标时,就应该沉下心来,历练;梦想,不是浮躁,而是沉淀和积累,只有拼出来的美丽,没有等出来的辉煌,机会永远是留给最渴望的那个人,学会与内心深处的你对话,问问自己,想
要怎样的人生,静心学习,耐心沉淀,送给自己,共勉。
**************************************************************************************