Welcome Guest. Please Login or Register  


You are here: Index > Webuzo > General Support > Topic : My laravel script can't run after migrating server



Threaded Mode | Print  

 My laravel script can't run after migrating server, problem with nginx (0 Replies, Read 18379 times)
heruprambadi
Group: Member
Post Group: Newbie
Posts: 2
Status:
Hi ! how to install laravel on webuzo ? My laravel script run smooth in apache, but when i move it to webuzo, i can't run it  :neu:
I got 500 Internal Server Error when i run it.
Maybe i have to add this config to nginx :

server {
    listen 80;
    server_name myapp.localhost.com;
    root /srv/smile/public;

    index index.html index.htm index.php;

    charset utf-8;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location = /favicon.ico { access_log off; log_not_found off; }
    location = /robots.txt  { access_log off; log_not_found off; }

    access_log off;
    error_log  /var/log/nginx/myapp-error.log error;

    sendfile off;

    client_max_body_size 100m;

    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_intercept_errors off;
        fastcgi_buffer_size 16k;
        fastcgi_buffers 4 16k;
    }

    location ~ /\.ht {
        deny all;
    }
}

But when i add it, i can't restart server.
I try to shut it down, but when i start it again, all my web is error. Please help.
IP: --   

« Previous    Next »

Threaded Mode | Print  



Jump To :


Users viewing this topic
1 guests, 0 users.


All times are GMT. The time now is April 23, 2024, 6:25 pm.

  Powered By AEF 1.0.8 © 2007-2008 Electron Inc.Queries: 11  |  Page Created In:0.028