nginx location 配置详解 【转载,整理】

http://www.nginx.cn/115.html

NGINX location 配置参考:http://www.cnblogs.com/zlingh/p/6288994.html

https://seonoco.com/nginx-prohibit-access-to-the-directory-or-file

#请求 nginx.com/static/1.html,请求static目录下的文件请求,区分大小写
location ~ /static/ {
root /webroot/static/;
}
#请求 nginx.com/static/aaa/1.html,请求static目录下的递归子目录的文件请求,区分大小写
location ~ /static {
root /webroot/static/;
}

上一篇:【题解】Cut the Sequence(贪心区间覆盖)


下一篇:poj -3614 Sunscreen(贪心 + 优先队列)