1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-10-30 23:37:43 +02:00

Reenable nginx request buffering to fix roundcube

This commit is contained in:
Florent Daigniere
2025-10-18 21:47:32 +02:00
parent 0ce884df29
commit ca89739174
2 changed files with 5 additions and 1 deletions

View File

@@ -0,0 +1 @@
Re-enable nginx buffering as apparently roundcube is broken without

View File

@@ -60,7 +60,10 @@ server {
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_request_buffering off;
# unclear why this is required, see #3913
fastcgi_buffers 16 32k;
fastcgi_buffer_size 64k;
fastcgi_busy_buffers_size 64k;
# nginx buffers #
proxy_buffer_size 128k;