91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Nginx的location功能怎么配置

發布時間:2022-03-19 14:04:21 來源:億速云 閱讀:142 作者:iii 欄目:開發技術

本篇內容介紹了“Nginx的location功能怎么配置”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

1.Nginx location 1.1.location作用

location指令的作用就是根據用戶請求的URI來執行不同的應用。

1.2.location語法

location [ = | ~ | ~* | ^~ ] uri {...}

將以上語法分為四部分進行說明:

location:指令[ = | ~ | ~* | ^~ ]:匹配的標識uri:匹配的網站地址{...}:匹配uri后要執行的配置段

注意:

~與~*的區別是:~區分大小寫,~*不區分大小寫^~:進行常規字符串匹配后,不做正則表達式的檢查

1.3.location匹配示例

location = / {[ configuration A]}location / {[ configuration B]}location /documents {[ configuration C]}location ^~ /images/ {[ configuration D]}location ~* \.(gif|jpg|jpeg)$ {[ configuration E]}
上述配置,請求“/”時,匹配configuration A請求"/index.html"時,講匹配configuration B請求“/documents/docunment.html”時,匹配configuration C請求“images/1.gif”時,匹配configuration D請求“/documents/1.jpg”時,匹配configuration E

1.4.location配置實例

 server {        listen       80;        server_name  bbs.yygg.com;        root    html/bbs;        location / {            return 401;        }        location =/ {            return 402;        }        location /documents/ {            return 403;        }        location ^~ /images/ {            return 405;        }        location ~* \.(gif|jpg|jpeg)$ {            return 406;        }

測試結果

[root@nginx-01 ~]# curl -s -o /dev/null -I -w "%{http_code}\n" bbs.yygg.com402[root@nginx-01 ~]# curl -s -o /dev/null -I -w "%{http_code}\n" bbs.yygg.com/402[root@nginx-01 ~]# curl -s -o /dev/null -I -w "%{http_code}\n" bbs.yygg.com/index.html401[root@nginx-01 ~]# curl -s -o /dev/null -I -w "%{http_code}\n" bbs.yygg.com/documents/documents.html403[root@nginx-01 ~]# curl -s -o /dev/null -I -w "%{http_code}\n" bbs.yygg.com/images/1.gif405[root@nginx-01 ~]# curl -s -o /dev/null -I -w "%{http_code}\n" bbs.yygg.com/documents/1.jpg406[root@nginx-01 ~]# curl -s -o /dev/null -I -w "%{http_code}\n" bbs.yygg.com/yyang/401

返回的狀態碼也是與配置中的規則相匹配的。 

1.5.不用uri及特殊字符組合匹配的順序說明

location =/ {}:精確匹配location ^~ /images/ {}:常規字符串匹配,不做正則匹配location ~* \.(gif|jpg|jpeg)$ {}:正則匹配location /documents/ {}:常規字符串匹配,如果有正則,優先匹配正則location / {}:所有location都不匹配后默認匹配

“Nginx的location功能怎么配置”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

永新县| 正安县| 陇南市| 桦甸市| 济南市| 公主岭市| 荣成市| 淮南市| 苏尼特左旗| 裕民县| 喜德县| 磐安县| 谢通门县| 洪湖市| 平乡县| 新乡县| 嘉峪关市| 东阿县| 台中县| 孙吴县| 饶平县| 西贡区| 桦川县| 双城市| 富阳市| 正镶白旗| 连江县| 双峰县| 商丘市| 大埔县| 阳东县| 花垣县| 肇东市| 赤城县| 宝鸡市| 蕲春县| 临沭县| 麦盖提县| 华宁县| 渑池县| 康乐县|