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

Conversation

limeeugenia
Copy link

@limeeugenia limeeugenia commented Oct 14, 2024

Description

fastcgi_buffer sizes are suspected to be too small for the page size FE container needs to serve causing the responses to get buffered in the tmp files.

Related resources

Change log

  • The initial commit a165bc5 is not building in the Cloud due to error:
2024/10/18 02:36:22 [emerg] 1#1: "fastcgi_busy_buffers_size" must be less than the size of all "fastcgi_buffers" minus one buffer in /etc/nginx/nginx.conf:32

Checklist

  • I agree with the Code Contribution License Agreement in CONTRIBUTING.md

@@ -17,6 +17,11 @@

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

fastcgi_buffer_size 512k;

Choose a reason for hiding this comment

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

seems to be too much only for first side response part (which usually headers only)

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants