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端口 用域名來區分,就像上面代碼同樣php
#這些字段是控制日誌輸出內容的html
$remote_addr變量:記錄了客戶端的IP地址(普通狀況下)。 $remote_user變量:當nginx開啓了用戶認證功能後,此變量記錄了客戶端使用了哪一個用戶進行了認證。 $time_local變量:記錄了當前日誌條目的時間。 $request變量:記錄了當前http請求的方法、url和http協議版本。 $status變量:記錄了當前http請求的響應狀態,即響應的狀態碼,好比200、404等響應碼,都記錄在此變量中。 $body_bytes_sent變量:記錄了nginx響應客戶端請求時,發送到客戶端的字節數,不包含響應頭的大小。 $http_referer變量:記錄了當前請求是從哪一個頁面過來的,好比你點了A頁面中的超連接才產生了這個請求,那麼此變量中就記錄了A頁面的url。 $http_user_agent變量:記錄了客戶端的軟件信息,好比,瀏覽器的名稱和版本號。
#設置訪問日誌的存儲路徑,error_log 是設置錯誤日誌的nginx
優先級瀏覽器
= 精確匹配:用於標準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 "~"區分大小寫正則匹配curl
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 「~*」不區分大小寫的正則匹配ide
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 「^~」不進行正則匹配的標準匹配,只匹配前綴url
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