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
规则说明php
优先顺序
(location =) > (location 完整路径) > (location ^~ 路径) > (location ~,~* 正则顺序) > (location 部分起始路径) > (/)css
按照上面的location写法,如下的匹配示例成立html
/ -> 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
因此实际使用中,我的以为至少有三个匹配规则定义,以下nginx
#直接匹配网站根,经过域名访问网站首页比较频繁,使用这个会加速处理,官网如是说。 #这里是直接转发给后端应用服务器了,也能够是一个静态首页 # 第一个必选规则 location = / { proxy_pass http://tomcat:8080/index } # 第二个必选规则是处理静态文件请求,这是nginx做为http服务器的强项 # 有两种配置模式,目录匹配或后缀匹配,任选其一或搭配使用 location ^~ /static/ { root /webroot/static/; } location ~* \.(gif|jpg|jpeg|png|css|js|ico)$ { root /webroot/res/; } #第三个规则就是通用规则,用来转发动态请求到后端应用服务器 #非静态文件请求就默认是动态请求,本身根据实际把握 #毕竟目前的一些框架的流行,带.php,.jsp后缀的状况不多了 location / { proxy_pass http://tomcat:8080/ }
Rewrite规则
rewrite功能就是,使用nginx提供的全局变量或本身设置的变量,结合正则表达式和标志位实现url重写以及重定向。rewrite只能放在server{},location{},if{}中,而且只能对域名后边的除去传递的参数外的字符串起做用,例如 http://seanlook.com/a/we/index.php?id=1&u=str 只对/a/we/index.php重写。web
语法rewrite regex replacement [flag];正则表达式
若是相对域名或参数字符串起做用,可使用全局变量匹配,也可使用proxy_pass反向代理。json
代表看rewrite和location功能有点像,都能实现跳转,主要区别在于rewrite是在同一域名内更改获取资源的路径,而location是对一类路径作控制访问或反向代理,能够proxy_pass到其余机器。不少状况下rewrite也会写在location里,它们的执行顺序是:后端
若是其中某步URI被重写,则从新循环执行1-3,直到找到真实存在的文件;循环超过10次,则返回500 Internal Server Error错误。tomcat
flag标志位服务器
last : 至关于Apache的[L]标记,表示完成rewrite break : 中止执行当前虚拟主机的后续rewrite指令集 redirect : 返回302临时重定向,地址栏会显示跳转后的地址 permanent : 返回301永久重定向,地址栏会显示跳转后的地址
由于301和302不能简单的只返回状态码,还必须有重定向的URL,这就是return指令没法返回301,302的缘由了。这里 last 和 break 区别有点难以理解:
last通常写在server和if中,而break通常使用在location中
last不终止重写后的url匹配,即新的url会再从server走一遍匹配流程,而break终止重写后的匹配
break和last都能阻止本次匹配继续执行后面的rewrite指令
if指令与全局变量
if判断指令
语法为if(condition){...},对给定的条件condition进行判断。若是为真,大括号内的rewrite指令将被执行,if条件(conditon)能够是以下任何内容:
-f和!-f用来判断是否存在文件
-d和!-d用来判断是否存在目录
-e和!-e用来判断是否存在文件或目录
-x和!-x用来判断文件是否可执行
例如
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.someone.com www.somewhere.com; if ($invalid_referer) { return 404; } //防盗链 }
错误提示页面的重定向
对于不一样的状况设置不一样的属性:
1. 静态页面, 不须要任何设置
2. 反向代理页面, 须要在proxy设置的同时设置 proxy_intercept_errors on;
3. 经过fastcgi访问PHP, 须要设置 fastcgi_intercept_errors on;
另外再设置对应的error_page. 例子以下, 这里配置的404.html和50x_pc.html, 其页面上的资源路径, 都必须用绝对路径指向 /50x/*** , 不然没法保证在任何出错页面上都能正常显示.
// 如下都是 server {...} 内的设置, 注意其中的 location /50x 部分 location /web { proxy_intercept_errors on; proxy_pass http://web_master; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header REMOTE-HOST $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } location /50x { root html; } if ($time_iso8601 ~ "^(\d{4}-\d{2}-\d{2})") { set $logday $1; } error_page 404 /50x/404.html; error_page 500 502 503 504 505 /50x/50x_pc.html; access_log logs/yihuicai.access.$logday.log main;
全局变量
下面是能够用做if判断的全局变量
例:http://localhost:88/test1/test2/test.php
$host:localhost
$server_port:88
$request_uri:http://localhost:88/test1/test2/test.php
$document_uri:/test1/test2/test.php
$document_root:/var/www/html
$request_filename:/var/www/html/test1/test2/test.php
经常使用正则
小括号()之间匹配的内容,能够在后面经过$1来引用,$2表示的是前面第二个()里的内容。
rewrite实例
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-9]{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; # 应用前面定义的变量。判断首先文件在不在,不在再判断目录在不在,若是还不在就跳转到最后一个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状态码。
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。
相似于phalcon的两层重定向的例子
server { listen 80; server_name localhost; #charset koi8-r; access_log logs/localhost.access.log main; location / { root d:/WebRoot; index index.html index.htm index.php; } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } # proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ \.php$ { # proxy_pass http://127.0.0.1; #} # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 location ~ \.php$ { root d:/WebRoot; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } location /test/ { root d:/WebRoot; index index.php; rewrite ^(.*)$ /test/sub/ break; } location /sctopic { root d:/WebRoot; index index.php; rewrite ^\/sctopic$ /sctopic/public last; rewrite ^\/sctopic\/(.*)$ /sctopic/public/$1 last; } location /sctopic/public/ { root d:/WebRoot; index index.php; if (-f $request_filename){ break; } rewrite ^\/sctopic\/public(.*)(\.html|\.json)$ /sctopic/public/index.php?_url=$1 last; rewrite ^\/sctopic\/public(.*)$ /sctopic/public/index.php?_url=$1 last; } # deny access to .htaccess files, if Apache's document root # concurs with nginx's one #location ~ /\.ht { # deny all; #} }