Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save reyvhernandez/fd15229b84d5f064d7a765b168c7e6a7 to your computer and use it in GitHub Desktop.
Save reyvhernandez/fd15229b84d5f064d7a765b168c7e6a7 to your computer and use it in GitHub Desktop.
Laravel Valet : fix timeout error
# Very large cookies/headers may throw errors without the following (extremely generous) settings:
fastcgi_buffer_size 4096k;
fastcgi_buffers 128 4096k;
fastcgi_busy_buffers_size 4096k;
# Long-running/slow services
fastcgi_read_timeout 600;
proxy_connect_timeout 600;
proxy_send_timeout 600;
proxy_read_timeout 600;
send_timeout 600;
add to /usr/local/etc/nginx/fastcgi_params
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment