Created
July 28, 2022 08:22
-
-
Save reyvhernandez/fd15229b84d5f064d7a765b168c7e6a7 to your computer and use it in GitHub Desktop.
Laravel Valet : fix timeout error
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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