diff --git a/docker-compose.yml b/docker-compose.yml index e720c3b..3d36a86 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -17,6 +17,11 @@ services: # Chat uploads / recordings / transcripts on the persistent volume too, so they survive image # rebuilds (otherwise old shared images 404 as "broken image" after every deploy). - UPLOADS_DIR=/data/uploads + # Max chat-attachment size in MB (default 1024 = 1 GB). The app streams uploads to /data/uploads, so + # large files don't buffer in memory. IMPORTANT: also set Nginx Proxy Manager's client_max_body_size + # for remote.bizgaze.com to at least this (Advanced tab: `client_max_body_size 1024m;`) or the proxy + # rejects big uploads before they reach the app. + - MAX_UPLOAD_MB=1024 - REC_DIR=/data/recordings - TRANS_DIR=/data/transcripts # Secrets (TURN credentials, SSO_SECRET, BIZGAZE_WEBHOOK_URL, etc.) live in diff --git a/server/public/home.html b/server/public/home.html index fc3243e..6b4e684 100644 --- a/server/public/home.html +++ b/server/public/home.html @@ -1158,7 +1158,7 @@
-