You are here: Index > Webuzo > General Support > Topic : Laravel on nginx
|
Laravel on nginx, Laravel nginx conf (0 Replies, Read 6860 times) |
|
|
heruprambadi
|
#
May 15, 2016, 5:56 am |
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 »
Jump To :
Users viewing this topic |
|
1 guests, 0 users.
|
All times are GMT. The time now is May 2, 2025, 11:54 pm.