您好,登錄后才能下訂單哦!
今天小編就為大家帶來一篇介紹nginx虛擬機配置和location使用方法的文章。小編覺得挺實用的,為此分享給大家做個參考。一起跟隨小編過來看看吧。
server {
listen 80;
server_name www.yang.com;
#虛擬機主機重點,一樣的ip端口,虛擬機主機就是靠這邊的域名來路由內容的
root /yang/;
#根目錄
index index.html index.php;
access_log /yang/yang_com_access.log main;
location / {
}
}
#虛擬機主機只需要在conf.d目錄里 另起一個.conf 文件,里面把server段配好就行了,如果是相同ip端口 用域名來區分,就像上面代碼一樣
優先級
= 精確匹配:用于標準uri前,要求請求字符串和uri嚴格匹配。如果匹配成功就停止匹配,立即執行該location里面的請求。
~ 正則匹配:用于正則uri前,表示uri里面包含正則,并且區分大小寫。
~* 正則匹配:用于正則uri前,表示uri里面包含正則,不區分大小寫。
^~ 非正則匹配;用于標準uri前,nginx服務器匹配到前綴最多的uri后就結束,該模式匹配成功后,不會使用正則匹配。
無 普通匹配(\);與location順序無關,是按照匹配的長短來取匹配結果。若完全匹配,就停止匹配。
PS: 優先級從高到低
1 “=”精準匹配
location = /news/ {
echo "test1";
}
[root@www quail]# curl 192.168.249.132/news/
test1
2 "~"區分大小寫正則匹配
location ~ \.(html) {
echo 'test2';
}
location ~ \.(htmL) {
echo 'test3';
}
[root@www quail]# curl 192.168.249.132/index.html
test2
[root@www quail]# curl 192.168.249.132/index.htmL
test3
3 “~*”不區分大小寫的正則匹配
location ~* \.(html){
echo 'test4';
}
[root@www quail]# curl 192.168.249.132/index.htmL
test4
[root@www quail]# curl 192.168.249.132/index.html
test4
4 “^~”不進行正則匹配的標準匹配,只匹配前綴
location ^~ /index/ {
echo 'test5';
}
[root@www quail]# curl 192.168.249.132/index/
test5
[root@www quail]# curl 192.168.249.132/index/heihei
test5
[root@www quail]# curl 192.168.249.132/index/asdnmkalsjd
test5
5 普通匹配
location / {
echo 'test6';
}
[root@www quail]# curl 192.168.249.132
test6
以上就是nginx虛擬機配置和location使用方法的詳細內容了,看完之后是否有所收獲呢?如果想了解更多相關內容,歡迎關注億速云行業資訊!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。