Skip to content

Commit

Permalink
Increase nginx fastcgi buffers (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
mdarnaculleta authored Sep 20, 2021
1 parent 3ba7421 commit 196c9bd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions nginx/conf/conf.d/default.conf
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ server {
resolver local=on;

# Increase the buffer size to handle large cache invalidation headers
fastcgi_buffer_size 32k;
fastcgi_buffers 32 4k;
fastcgi_buffer_size 128k;
fastcgi_buffers 4 256k;
fastcgi_busy_buffers_size 256k;

fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
Expand Down

0 comments on commit 196c9bd

Please sign in to comment.