Windows版Nginx中的配置文件,一定要注意斜線

nginx啓動失敗

nginx: [emerg] invalid number of arguments in "root" directive in nginx/nginx.conf:41

錯誤:

直接拷貝Windows目錄路徑
Nginx.conf
root C:\Users\Qingtao_Qu\IdeaProjects\DBlog\images\;

error.log
2020/05/11 14:41:41 [emerg] 104876#113556: invalid number of arguments in "root" directive in D:\Program Files\nginx-1.18.0/conf/nginx.conf:41

正確:

轉義後
Nginx.conf
root C:\\Users\\Qingtao_Qu\\IdeaProjects\\DBlog\\images\\;


訪問靜態資源
http://localhost/top.png

access.log
127.0.0.1 - - [11/May/2020:14:45:47 +0800] "GET /top.png HTTP/1.1" 304 0 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36"

 正確:

改爲斜線

root C:/Users/Qingtao_Qu/IdeaProjects/DBlog/images/;

127.0.0.1 - - [11/May/2020:14:48:32 +0800] "GET /top.png HTTP/1.1" 304 0 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36"


 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章