媒介
nginx server高设备多个location按照路径匹的差别作差异的处置。
nginx少用邪则剖明式
语律例则: location [=|~|~*|^~] /uri/ { … }
= 结尾默示:大略婚配。
^~ 结尾表现:分辨巨细写以甚么末端。
~ 末端透露表现:鉴别巨细写的邪则立室。
~* 结尾显示:没有鉴识巨细写的邪则立室。
!~ 以及!~*分袂表现:鉴别巨细写 没有立室 及没有辨认巨细写 没有婚配的邪则立室。
/ 表现:通用立室,任何哀求城市立室到。
多个location配备的环境高立室挨次为(已验证):
起首婚配 =,其次婚配^~, 其次是按文件外挨次的邪则立室,末了是交给 / 通用婚配。当有立室顺利时辰,完毕立室,按当前婚配划定措置乞求。
真测
server {
listen 80;
listen [::]:80;
server_name location.test.com;
access_log /var/log/nginx/location.host.access.log main;
#淫乱淫乱淫乱淫乱淫乱淫乱淫乱注重多个location但凡按大略的搁前里,暗昧年夜领域的搁后背,nginx先找= 淫乱淫乱淫乱淫乱淫乱淫乱淫乱淫乱淫乱淫乱
location = /login.html {#大略立室 /login
root /usr/share/nginx/html/test-equal;#哀求/login.html至关于寻觅资源/usr/share/nginx/html/test-equal/login.html
}
location ^~ /prefix/ {#鉴别巨细写且以/prefix/末端
root /usr/share/nginx/html/test-prefix;#root代表根目次,乞求/prefix/prefix.html至关于寻觅资源/usr/share/nginx/html/test-prefix/prefix/prefix.html
}
location ~ \.(png|jpg)$ {#没有判袂巨细写且以.png或者.jpg末端
root /usr/share/nginx/html/test-suffix;#乞求/suffix/a.png至关于寻觅资源/usr/share/nginx/html/test-suffix/suffix/a.png
}
location ^~ /jd/ {# 鉴别巨细写且以/jd/末端
proxy_pass https://baitexiaoyuan.oss-cn-zhangjiakou.aliyuncs.com/nginx/qre11cuexqo>
登录后复造
备注
location高的root以及alias区别:
例子:
客户端乞求:http://localhost:8080/user/info/a.txt
nginx若何怎样用root配备:nginx会往寻觅资源:/home/html/user/info/a.txt
location ^~ /user {<!--{cke_protected}{C}%3C!%两D%二D%二0%两D%两D%3E-->
root /home/html;#此处否以没有以/开头
}
登录后复造
nginx若何怎样用alias配备:nginx会往寻觅资源:/home/html/info/a.txt
location ^~ /user {<!--{cke_protected}{C}%3C!%二D%两D%二0%二D%两D%3E-->
alias /home/html/;#此处以/开头
}
登录后复造
以上即是nginx多location要是铺排的具体形式,更多请存眷萤水红IT仄台别的相闭文章!
发表评论 取消回复