1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-10-30 23:37:43 +02:00
3934: chore: fix link to charts r=nextgens a=dekarl

charts moved to the charts folder in f76c60a540

## What type of PR?

documentation

## What does this PR do?
track moved link destination

### Related issue(s)
- the chart was moved in: [#001](https://github.com/Mailu/helm-charts/pull/389)

## Prerequisites
Before we can consider review and merge, please make sure the following list is done and checked.
If an entry in not applicable, you can check it or remove it from the list.

- [X] In case of feature or enhancement: documentation updated accordingly
- [X] Unless it's docs or a minor change: add [changelog](https://mailu.io/master/contributors/workflow.html#changelog) entry file.


3940: Reenable nginx request buffering to fix roundcube r=nextgens a=nextgens

## What type of PR?

bug-fix

## What does this PR do?

Re-enable nginx request buffering to fix roundcube

### Related issue(s)
- closes #3913 

## Prerequisites
Before we can consider review and merge, please make sure the following list is done and checked.
If an entry in not applicable, you can check it or remove it from the list.

- [ ] In case of feature or enhancement: documentation updated accordingly
- [x] Unless it's docs or a minor change: add [changelog](https://mailu.io/master/contributors/workflow.html#changelog) entry file.


Co-authored-by: Karl Egly <dekarl@web.de>
Co-authored-by: Florent Daigniere <nextgens@freenetproject.org>
This commit is contained in:
bors-mailu[bot]
2025-10-20 11:16:00 +00:00
committed by GitHub
3 changed files with 6 additions and 2 deletions

View File

@@ -7,5 +7,5 @@ Please see `the Helm Chart documentation`_.
We are looking for maintainers: if you are interested please join our `Matrix`_ room.
.. _`the Helm Chart documentation`: https://github.com/Mailu/helm-charts/blob/master/mailu/README.md
.. _`the Helm Chart documentation`: https://github.com/Mailu/helm-charts/blob/master/charts/mailu/README.md
.. _`Matrix`: https://matrix.to/#/#mailu:tedomum.net

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;