Welcome Guest. Please Login or Register  


You are here: Index > Webuzo > General Support > Topic : Laravel on nginx



Threaded Mode | Print  

 Laravel on nginx, Laravel nginx conf (0 Replies, Read 5841 times)
heruprambadi
Group: Member
Post Group: Newbie
Posts: 2
Status:
hi. i try to change nginx conf to make script work.
i try to put this on nginx conf :

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 it's not work ! i'm sure it because php5-fpm.sock location is wrong.
where is php5-fpm.sock location in webuzo ?
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 25, 2024, 1:35 pm.

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