nginx版本是1.11,在nginx.conf檔案中增加了下面這個server塊,nginx就不能啟動,把feature這個單字改為其他單詞,就可以啟動,不知什麼原理?
#laravel-5-4-feature.com
server {
listen 80;
server_name laravel-5-4-feature.com;
charset utf-8;
location / {
root D:/wnmp/www/laravel-5-4-feature/public;
index index.php index.html index.htm;
try_files $uri $uri/ /index.php?$query_string;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
location ~ \.php$ {
root D:/wnmp/www/laravel-5-4-feature/public;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
應該不是
feature
的問題我在
nginx version: nginx/1.10.3
下測試無此問題。我升級下nginx
看看已升級為
nginx version: nginx/1.12.0
測試配置:
運行結果:
也請樓主提供下具體的
nginx -t
報錯資訊