标签:Fix contex ref mod expr efi 发送 image default
sudo cd /etc/nginx/sites-available sudo vim default
格式:
location 要匹配的路径{
root 映射到服务器文件的父路径
}
laction
Syntax: location [ = | ~ | ~* | ^~ ] uri { ... }
location @name { ... }
Default: —
Context: server, location
location 有两种匹配路径的方式:前缀字符串匹配(prefix string)和正则表达式匹配(regular expression)
默认会优先前缀字符串匹配,再进行正则表达式匹配
若 正则表达式匹配成功 则使用其匹配结果
否则 使用前缀字符串匹配的结果
此时 前缀字符串匹配也失败的话 就会报错
ex:
```
location = / {
[ configuration A ]
}
location / {
[ configuration B ]
}
location /documents/ {
[ configuration C ]
}
location ^~ /images/ {
[ configuration D ]
}
location ~* .(gif|jpg|jpeg)$ {
[ configuration E ]
}
```
root
Syntax: root path;
Default:
root html;
Context: http, server, location, if in location
Sets the root directory for requests.
ex:
location /i/ { root /data/w3; }
/data/w3/i/top.gif文件将被发送以响应“/i/top.gif”请求。
参考:nginx wiki
标签:Fix contex ref mod expr efi 发送 image default
原文地址:https://www.cnblogs.com/freeyun/p/9168866.html