1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-08-10 22:31:47 +02:00
(cherry picked from commit 0021ba9cb9)
This commit is contained in:
Florent Daigniere
2024-09-05 23:08:41 +02:00
committed by Mergify
parent 0e9721b7f9
commit 9b55970ab9
2 changed files with 11 additions and 0 deletions

View File

@@ -0,0 +1 @@
Increase the size of buffers for webmail

View File

@@ -55,6 +55,16 @@ server {
{% else %} {% else %}
fastcgi_param SCRIPT_NAME {{WEB_WEBMAIL}}/$fastcgi_script_name; fastcgi_param SCRIPT_NAME {{WEB_WEBMAIL}}/$fastcgi_script_name;
{% endif %} {% endif %}
# fastcgi buffers for php-fpm #
fastcgi_buffers 16 32k;
fastcgi_buffer_size 64k;
fastcgi_busy_buffers_size 64k;
# nginx buffers #
proxy_buffer_size 128k;
proxy_buffers 4 256k;
proxy_busy_buffers_size 256k;
} }
location ~ (^|/)\. { location ~ (^|/)\. {