Fixes 503 errors on /api/global/auth/default/oidc/configs/ using https

Similar to the http solution in the default config
this fixes the same issue when https is used.

Related to
https://github.com/Budibase/budibase/issues/5969
https://github.com/Budibase/budibase/discussions/5807
This commit is contained in:
joecks 2025-01-30 20:55:23 +01:00 committed by GitHub
parent 2dc3a693a8
commit f27f4d601a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 0 deletions

View File

@ -41,6 +41,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;
}