Compare commits

...

2 Commits

Author SHA1 Message Date
timothykim d8839d6b2e fix nginx slow download issue 2026-04-18 07:59:15 -04:00
timothykim b88a2e1c6e fix garage webui 2026-04-18 07:58:57 -04:00
2 changed files with 3 additions and 0 deletions
+2
View File
@@ -17,3 +17,5 @@ bind_addr = "[::]:3902"
root_domain = ".web.garage" root_domain = ".web.garage"
index = "index.html" index = "index.html"
[admin]
api_bind_addr = "[::]:3903"
@@ -27,6 +27,7 @@ server {
client_max_body_size 20G; client_max_body_size 20G;
# Stream uploads directly to Nextcloud instead of buffering to disk first # Stream uploads directly to Nextcloud instead of buffering to disk first
proxy_request_buffering off; proxy_request_buffering off;
proxy_buffering off;
set $upstream_nextcloud http://nextcloud:80; set $upstream_nextcloud http://nextcloud:80;