###### 1个示例:
location = / {
# 精确匹配 / ,主机名后面不能带任何字符串
[ configuration A ]
}
location / {
# 由于所有的地址都以 / 开头,所以这条规则将匹配到所有要求
# 但是正则和最长字符串会优先匹配
[ configuration B ]
}
location /documents/ {
# 匹配任何以 /documents/ 开头的地址,匹配符合以后,还要继续往下搜索
# 只有后面的正则表达式没有匹配到时,这1条才会采取这1条
[ configuration C ]
}
location ~ /documents/Abc {
# 匹配任何以 /documents/ 开头的地址,匹配符合以后,还要继续往下搜索
# 只有后面的正则表达式没有匹配到时,这1条才会采取这1条
[ configuration CC ]
}
location ^~ /images/ {
# 匹配任何以 /images/ 开头的地址,匹配符合以后,停止往下搜索正则,采取这1条。
[ configuration D ]
}
location ~* \.(gif|jpg|jpeg)$ {
# 匹配所有以 gif,jpg或jpeg 结尾的要求
# 但是,所有要求 /images/ 下的图片会被 config D 处理,由于 ^~ 到达不了这1条正则
[ configuration E ]
}
location /images/ {
# 字符匹配到 /images/,继续往下,会发现 ^~ 存在
[ configuration F ]
}
location /images/abc {
# 最长字符匹配到 /images/abc,继续往下,会发现 ^~ 存在
# F与G的放置顺序是没有关系的
[ configuration G ]
}
location ~ /images/abc/ {
# 只有去掉 config D 才有效:先最长匹配 config G 开头的地址,继续往下搜索,匹配到这1条正则,采取
[ configuration H ]
}
location ~* /js/.*/\.js
顺序 no优先级:
(location =) > (location 完全路径) > (location ^~ 路径) > (location ~,~* 正则顺序) > (location 部份起始路径) > (/)
所以实际使用中,个人觉得最少有3个匹配规则定义,以下:
#直接匹配网站根,通过域名访问网站首页比较频繁,使用这个会加速处理,官网如是说。
#这里是直接转发给后端利用服务器了,也能够是1个静态首页
# 第1个必选规则
location = / {
proxy_pass http://tomcat:8080/index
}
# 第2个必选规则是处理静态文件要求,这是nginx作为http服务器的强项
# 有两种配置模式,目录匹配或后缀匹配,任选其1或搭配使用
location ^~ /static/ {
root /webroot/static/;
}
location ~* \.(gif|jpg|jpeg|png|css|js|ico)$ {
root /webroot/res/;
}
#第3个规则就是通用规则,用来转发动态要求到后端利用服务器
#非静态文件要求就默许是动态要求,自己根据实际掌控
#毕竟目前的1些框架的流行,带.php,.jsp后缀的情况很少了
location / {
proxy_pass http://tomcat:8080/
}
http://tengine.taobao.org/book/chapter_02.html
http://nginx.org/en/docs/http/ngx_http_rewrite_module.html
rewrite功能就是,使用nginx提供的全局变量或自己设置的变量,结合正则表达式和标志位实现url重写和重定向。rewrite只能放在server{},location{},if{}中,并且只能对域名后边的除去传递的参数外的字符串起作用,例如 http://seanlook.com/a/we/index.php?id=1&u=str 只对/a/we/index.php重写。语法rewrite regex replacement [flag];
如果相对域名或参数字符串起作用,可使用全局变量匹配,也能够使用proxy_pass反向代理。
表明看rewrite和location功能有点像,都能实现跳转,主要区分在于rewrite是在同1域名内更改获得资源的路径,而location是对1类路径做控制访问或反向代理,可以proxy_pass到其他机器。很多情况下rewrite也会写在location里,它们的履行顺序是:
如果其中某步URI被重写,则重新循环履行1⑶,直到找到真实存在的文件;循环超过10次,则返回500 Internal Server Error毛病。
由于301和302不能简单的只返回状态码,还必须有重定向的URL,这就是return指令没法返回301,302的缘由了。这里 last 和 break 区分有点难以理解:
if判断指令
语法为if(condition){…},对给定的条件condition进行判断。如果为真,大括号内的rewrite指令将被履行,if条件(conditon)可以是以下任何内容:
~
正则表达式匹配,~*
不辨别大小写的匹配,!~辨别大小写的不匹配-f和!-f用来判断是不是存在文件
-d和!-d用来判断是不是存在目录
-e和!-e用来判断是不是存在文件或目录
-x和!-x用来判断文件是不是可履行
例如:
if ($http_user_agent ~ MSIE) {
rewrite ^(.*)$ /msie/$1 break;
} //如果UA包括"MSIE",rewrite要求到/msid/目录下
if ($http_cookie ~* "id=([^;]+)(?:;|$)") {
set $id $1;
} //如果cookie匹配正则,设置变量$id等于正则援用部份
if ($request_method = POST) {
return 405;
} //如果提交方法为POST,则返回状态405(Method not allowed)。return不能返回301,302
if ($slow) {
limit_rate 10k;
} //限速,$slow可以通过 set 指令设置
if (!-f $request_filename){
break;
proxy_pass http://127.0.0.1;
} //如果要求的文件名不存在,则反向代理到localhost 。这里的break也是停止rewrite检查
if ($args ~ post=140){
rewrite ^ http://example.com/ permanent;
} //如果query string中包括"post=140",永久重定向到example.com
location ~* \.(gif|jpg|png|swf|flv)$ {
valid_referers none blocked www.jefflei.com www.leizhenfang.com;
if ($invalid_referer) {
return 404;
} //防盗链
}
全局变量
下面是可以用作if判断的全局变量:
- $args : #这个变量等于要求行中的参数,同$query_string
- $content_length : 要求头中的Content-length字段。
- $content_type : 要求头中的Content-Type字段。
- $document_root : 当前要求在root指令中指定的值。
- $host : 要求主机头字段,否则为服务器名称。
- $http_user_agent : 客户端agent信息
- $http_cookie : 客户端cookie信息
- $limit_rate : 这个变量可以限制连接速率。
- $request_method : 客户端要求的动作,通常为GET或POST。
- $remote_addr : 客户真个IP地址。
- $remote_port : 客户真个端口。
- $remote_user : 已经过Auth Basic Module验证的用户名。
- $request_filename : 当前要求的文件路径,由root或alias指令与URI要求生成。
- $scheme : HTTP方法(如http,https)。
- $server_protocol : 要求使用的协议,通常是HTTP/1.0或HTTP/1.1。
- $server_addr : 服务器地址,在完成1次系统调用后可以肯定这个值。
- $server_name : 服务器名称。
- $server_port : 要求到达服务器的端口号。
- $request_uri : 包括要求参数的原始URI,不包括主机名,如:”/foo/bar.php?arg=baz”。
- $uri : 不带要求参数确当前URI,$uri不包括主机名,如”/foo/bar.html”。
- $document_uri : 与$uri相同。
例:http://localhost:88/test1/test2/test.php
$request_uri:http://localhost:88/test1/test2/test.php
$request_filename:/var/www/html/test1/test2/test.php
小括号()之间匹配的内容,可以在后面通过
http {
# 定义image日志格式
log_format imagelog '[$time_local] ' $image_file ' ' $image_type ' ' $body_bytes_sent ' ' $status;
# 开启重写日志
rewrite_log on;
server {
root /home/www;
location / {
# 重写规则信息
error_log logs/rewrite.log notice;
# 注意这里要用‘’单引号引发来,避免{}
rewrite '^/images/([a-z]{2})/([a-z0⑼]{5})/(.*)\.(png|jpg|gif)$' /data?file=$3.$4;
# 注意不能在上面这条规则后面加上“last”参数,否则下面的set指令不会履行
set $image_file $3;
set $image_type $4;
}
location /data {
# 指定针对图片的日志格式,来分析图片类型和大小
access_log logs/images.log mian;
root /data/images;
# 利用前面定义的变量。判断首先文件在不在,不在再判断目录在不在,如果还不在就跳转到最后1个url里
try_files /$arg_file /image404.html;
}
location = /image404.html {
# 图片不存在返回特定的信息
return 404 "image not found\n";
}
}
对形如/images/ef/uh7b3/test.png的要求,重写到/data?file=test.png,因而匹配到location /data,先看/data/images/test.png文件存不存在,如果存在则正常响应,如果不存在则重写tryfiles到新的image404 location,直接返回404状态码。
例2:
rewrite ^/images/(.*)_(\d+)x(\d+)\.(png|jpg|gif)$ /resizer/$1.$4?width=$2&height=$3? last;
对形如/images/bla_500x400.jpg的文件要求,重写到/resizer/bla.jpg?width=500&height=400地址,并会继续尝试匹配location。
http://www.nginx.cn/216.html
http://www.ttlsa.com/nginx/nginx-rewriting-rules-guide/
《老僧系列nginx之rewrite规则快速上手.pdf》
http://fantefei.blog.51cto.com/2229719/919431