使用nginx时出现Laravel 500错误

时间:2016-03-22 13:45:29

标签: php laravel nginx laravel-5

我已尝试过很多配置设置让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一起使用?

1 个答案:

答案 0 :(得分:0)

我可以在你的帖子中看到错误的配置。您需要正确设置Web服务器。您应该将public目录设置为根目录,在storage文件夹上设置写入权限。

所以,改变一下:

root "C:\Users\Administrator\Google Drive\projects\laravel";

对此:

root "C:\Users\Administrator\Google Drive\projects\laravel\public";

然后重新启动您的网络服务器。