1、解決Nginx make: *** No rule to make target `build', needed by `default'. Stop.
(1)先將以前的make cleanlinux
(2)安裝下面配置nginx
yum -y install make zlib-devel gcc-c++ libtool openssl openssl-devel
(3) 從新configurec++
./configure
(4) 編譯windows
make && make install
2、HTTP Error 404.The requested resource is not found.
緣由是由於端口被佔用。瀏覽器
(1)打開conf文件夾(G:\software\nginx-1.12.2\conf)ui
(2)打開nginx.confspa
(3)修改端口code
(4)用命令關閉並從新啓動server
(5)在瀏覽器輸入地址便可blog
3、An error occurred.
問題:
2020/10/07 21:26:49 [crit] 8964#22844: *2 GetFileAttributesEx() "G:\software
ginx-1.12.2\static" failed (123: The filename, directory name, or volume label syntax is incorrect), client: 127.0.0.1, server: localhost, request: "GET / HTTP/1.1", host: "localhost:10001"
緣由:windows和linux不同,windows中默認是反斜槓\\\,而linux確實斜槓// ,結果路徑中的
G:\software ginx-1.12.2\static \n就會被當作換行,被轉移處理
解決方案:配置資源目錄的時候, root G:\software\\nginx-1.12.2\static; 雙反斜槓表示不轉義,若是是linux就不會存在這個問題。
4、403 Forbidden
directory index of 「xxx「 is forbidden
緣由:直接使用IP地址和端口號訪問時,須要指定index,若是未指定,出現該報錯。
添加上autoindex on就能夠了