Skip to content

Commit

Permalink
Merge pull request #15111 from Budibase/single-image-nginx
Browse files Browse the repository at this point in the history
adding buffer settings for single image
  • Loading branch information
shogunpurple authored Dec 3, 2024
2 parents b1868d7 + 6fb5a81 commit 9d22431
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions hosting/single/nginx/nginx-default-site.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 9d22431

Please sign in to comment.