adding buffer settings for single image

This commit is contained in:
Martin McKeaveney 2024-12-03 16:42:36 +00:00
parent 75f61b5a31
commit 78ea6e73fd
1 changed files with 5 additions and 0 deletions

View File

@ -46,6 +46,11 @@ server {
}
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;
}