L1
location / {
root html;
index index.html index.htm;
}
L1可以匹配到请求127.0.0.1 、127.0.0.1/root html 是一个相对路径,表示以ng安装路径下html目录查找
index index.html 表示如果请求的是文件夹(http:128.0.0.1:8080/a/b/),默认查找的是文件index.html
先说几个有一定问写法:
前面没有/
location a{...}
无情啊!错误啊!仔细想想,a前面没有/,匹配不到任何东西,因为任何url请求都是以/开头的是/a/还是/a?
location /a/{
root html;
index index.html index.htm;
}
语法正确:只能匹配/a/和/a/*的请求
(1)请求127.0.0.1/a/b ,文件b请求,会去html下 的/a/下的b文件,如果没有尝试把找html/a/b/index.html文件
(2)请求127.0.0.1/a/b/,文件夹请求,获取html下的/a/b/目录下的index.html
(3)请求127.0.0.1/a/,文件夹请求,获取html下的/a/下的index.html
请求表示的是文件还是文件夹?
127.0.0.1/a 表示请求的是文件a
127.0.0.1/a/ 表示请求的是目录root/a/下的文件(默认index.html)
对于请求:127.0.0.1/a,如果a文件不存在,ng会自动再去找/root/a/目录下是否有默认文件(index.html),如果有发现有,则返回index.html;我们经常忽略ng会自动加/的情况;浏览器请求显示为127.0.0.1/a/,自动转换成了文件夹请求。前端VUE、REACT就用是这个原理
匹配意思
请求url必须把配置的location的字段全部包含,如果
location /ab
那么,request url是 /a 是无法匹配到的 请求/ab /ab/ 和 /abc*** 都可以匹配
普通前缀匹配优先级
L1
/a
L2
/ab
L1匹配:请求可以是127.0.0.1/a*
L2被匹配:请求可以是127.0.0.1/ab*,尽管L1也是满足匹配的,但是由于L2的ab更长,所以匹配L2
index
index配置参数在使用场景上,是配合目录请求 127.0.0.1/a/ 使用的,表示获取a/目录下的一个默认文件
location /a {
root D:/plugins/nginx-1.16.1/location-files/conf-a;
index index.html;
}
如果127.0.0.1/a 请求,会在D:/plugins/nginx-1.16.1/location-files/conf-a去找a文件,此时index参数无关。如果没有a文件,会找是否有/a/目录,如果有,则查找a/目录下面的index.html文件,所以index参数在目录请求时才有效。
如果127.0.0.1/a/ 请求,会在D:/plugins/nginx-1.16.1/location-files/conf-a/a/下去找index参数配置的默认index.html文件。
root
root表示location中使用的查找起始目录,如果不配置或者找不到对应的文件,则去nginx的安装目录下html目录作为默认起始目录:D:\plugins\nginx-1.16.1\html
try_files(格式:try_files $uri $uri/ @callback)实现文件代理
try_files $uri $uri/ /xxx/index.html
try_files后面必须跟3个参数,第一优先级是查找文件,第二优先级是自动拼接/,查找文件夹下的index配置;第三优先级是内部转发(redirect)或者内部回调请求
location /abcd {
root xxxx
index index.html
try_files $uri $uri/ /abcd/index.html;
}
只能只说 try_files 的第三个参数,如果$uri $uri/都没有查找成功,ng则内部发起一次/abcd/index.html的请求,又被自己location拦截到,所以找到xxxx/abcd/index.html文件,代理出去
proxy_pass转发到内部服务
location ^~/nbiot-manage/{
proxy_redirect off;
add_header X-Frame-Options SAMEORIGIN; proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:8080;
}
拦截所有的http://127.0.0.1/nbiot-manage/xxxxx请求,转发到本地的8080端口服务上;注意,ng转发会保留前缀:/nbiot-manage/,所以8080端口的服务必须要在配置文件中有个统一server上下文:server.context-path=/nbiot-manage
rewrite
rewrite 可以放在server,location,if模块中,语法:rewrite regular replacement [flag]
现在以location为例
静态
server {
location = /abcd
{
rewrite ^/abcd?$ /somePage.html break;
}
}
动态
server { location = /abcd
{
rewrite abcd?id=$1 ^abdc/([0-9]+)/?$ break;
}
}
abcd?id =1 转换为abcd/1
flag
针对浏览器
redirect:302跳转到rewrtie后面的地址。
permanent:301永久调整到rewrtie后面的地址,即当前地址已经永久迁移到新地址,一般是为了对搜索引擎友好。
后台服务
last:将rewrite后的地址重新在server标签执行。
break:将rewrite后地址重新在当前的location标签执行。