Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

POC increased buffer sizes for FE container [Dehner] #519

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@

location ~ \.php$ {
include fastcgi.conf;

fastcgi_buffer_size 4k;
fastcgi_buffers 16 64k;
fastcgi_busy_buffers_size 128k;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we should put these settings under
location @proxy

{# Variable is necessary for https://www.nginx.com/blog/dns-service-discovery-nginx-plus/#domain-name-upstream-group #}
set $upstream "{{ upstream }}";
fastcgi_pass "$upstream";
Expand Down
Loading