This forum has moved to a new location and is in read-only mode. Please visit talk.octobercms.com to access the new location.
emzero439
I'm using nginx (Laravel homestead vm) and the install wizards fails at the last time when "unpacking files" and shows the following error:
<html> <head><title>504 Gateway Time-out</title></head> <body bgcolor="white"> <center><h1>504 Gateway Time-out</h1></center> <hr><center>nginx/1.6.0</center> </body> </html> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page --> <!-- a padding to disable MSIE and Chrome friendly error page -->
OctoDevel
You need do some changes in tour nginx.conf. In the section http{} or in the virtual host file add to location /, the follow settings:
fastcgi_buffers 8 16k;
fastcgi_buffer_size 32k;
fastcgi_connect_timeout 60s;
fastcgi_send_timeout 60s;
fastcgi_read_timeout 60s;
I think this is all. Keep me informed :)
Last updated
jovib_
this is good ??
location / {
root www/app-name;
index index.php;
try_files $uri $uri/ /index.php;
fastcgi_buffers 8 16k;
fastcgi_buffer_size 32k;
fastcgi_connect_timeout 60s;
fastcgi_send_timeout 60s;
fastcgi_read_timeout 60s;
}
Last updated
1-4 of 4