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:
parent
2dc3a693a8
commit
f27f4d601a
|
@ -41,6 +41,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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue