配置详解
1. server_name 配置(仅匹配域名部分)
方案 |
示例(优先级由高到低) |
精确匹配 |
server_name howtocn.org www.howtocn.org; |
以*通配符开始 |
server_name *.howtocn.org; |
以*通配符结束 |
server_name www.*; |
匹配正则 |
server_name ~^(?<www>.+)\.howtocn\.org$;
server_name ~^(\w*\.)?\w+\.com$; 被匹配的字符可以在后面的配置中使用$1 ,$2 |
2. location 配置(仅匹配域名后面路径)
语法 |
含义(优先级由高到低) |
location = |
开头表示精确匹配 |
location 精确path |
完整的路径 |
location ^~ |
开头表示uri以某个常规字符串开头,不是正则匹配 |
location ~ |
开头表示区分大小写的正则匹配; |
location ~* |
开头表示不区分大小写的正则匹配 |
location 模糊path |
部分起始路径 |
location / |
通用匹配, 如果没有其它匹配,任何请求都会匹配到 |
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
3. Nginx 内置变量
变量 |
含义 |
$schema |
请求协议 |
$server_addr |
请求域名 |
$request_uri |
域名后面的相对路径 |
4. Rewrite 配置
实例
server
{
listen 80;
server_name abc.com;
root /home/q/server/abc/src/www/;
index index.php;
if ($request_filename !~* ^/(.*)\.(js|ico|gif|jpg|png|css|php|xml|txt|html|swf|apk|ipa|eot|svg|ttf|woff|htm|zip|map)$)
{
rewrite ^/(.*)$ /index.php last;
}
location ~ .*\.(php|php5)?$
{
fastcgi_pass 127.0.0.1:9000;
include fastcgi.conf;
fastcgi_index index.php;
fastcgi_param PROJECT_INCLUDE_PATH /home/q/php:/home/q/server/abc/config/:. ;
}
}
参考:
- Nginx 内置预定义变量
- Nginx 中文文档 | Nginx 英文文档
- Nginx 配置 location 总结及 rewrite 规则写法