Merge pull request #15111 from Budibase/single-image-nginx

adding buffer settings for single image
This commit is contained in:
Martin McKeaveney 2024-12-03 16:44:57 +00:00 committed by GitHub
commit 9d224311c6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -46,6 +46,11 @@ server {
} }
location ~ ^/api/(system|admin|global)/ { location ~ ^/api/(system|admin|global)/ {
# Enable buffering for potentially large OIDC configs
proxy_buffering on;
proxy_buffer_size 16k;
proxy_buffers 4 32k;
proxy_pass http://127.0.0.1:4002; proxy_pass http://127.0.0.1:4002;
} }