我嘗試了很多nginx配置設置來使用laravel,但都沒有。我的網頁上一直出現500錯誤。與nginx一起使用時出現Laravel 500錯誤
example.com目前無法處理此請求。
server {
listen _:80;
server_name example.com;
root "C:\Users\Administrator\Google Drive\projects\laravel";
index index.php index.html;
log_not_found off;
charset utf-8;
access_log logs/cdn.example.com-access.log ;
location ~ /\. {deny all;}
location ~ \.css {
add_header Content-Type text/css;
}
location ~ \.js {
add_header Content-Type application/x-javascript;
}
location/{
include mime.types;
}
location = /favicon.ico {
}
location = /robots.txt {
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9054;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
我非常的品牌新laravel和排序的新nginx的,我有我只是從我的http://localhost:8000開發服務器移至文檔根我所有的laravel文件。我怎樣才能讓它生存並使之與nginx一起工作?
你確定它應該是** example.com **嗎? – Oli
使用Google搜索「Laravel 500錯誤代碼」可以在這裏找到。原因之一是PHP版本。在我的情況下,我有一臺運行PHP 5.3的舊服務器,我嘗試將Laravel放在上面。 – Chandrew