Skip to content

Instantly share code, notes, and snippets.

@jiwom
Created March 29, 2023 02:42
Show Gist options
  • Save jiwom/5478e04e4c16725eeb5eac030c1f14d1 to your computer and use it in GitHub Desktop.
Save jiwom/5478e04e4c16725eeb5eac030c1f14d1 to your computer and use it in GitHub Desktop.
Valet Nginx Timeout Fix
client_header_timeout 3000;
client_body_timeout 3000;
fastcgi_read_timeout 3000;
fastcgi_buffers 8 128k;
fastcgi_buffer_size 128k;
to ~/usr/local/etc/nginx.confg file under http {} object.
Then restart the services valet restart
https://github.com/laravel/valet/issues/315
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment