From 04fdd99e0f7f84f15685dbfd0269a53cb7256bbe Mon Sep 17 00:00:00 2001 From: nathan Date: Wed, 29 Apr 2026 09:51:28 -0400 Subject: [PATCH] fix: update environment variables in convertx service configuration Co-authored-by: Copilot --- nodes/heimdall/convertx/compose.yaml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/nodes/heimdall/convertx/compose.yaml b/nodes/heimdall/convertx/compose.yaml index 08de9ca..77a013b 100644 --- a/nodes/heimdall/convertx/compose.yaml +++ b/nodes/heimdall/convertx/compose.yaml @@ -6,11 +6,16 @@ services: networks: - proxy-net restart: unless-stopped - # ports: - # - "3000:3000" environment: - - JWT_SECRET=aLongAndSecretStringUsedToSignTheJSONWebToken1234 # will use randomUUID() if unset - # - HTTP_ALLOWED=true # uncomment this if accessing it over a non-https connection + - JWT_SECRET=${JWT_SECRET} + - ACCOUNT_REGISTRATION=${ACCOUNT_REGISTRATION} + - HTTP_ALLOWED=${HTTP_ALLOWED} + - ALLOW_UNAUTHENTICATED=${ALLOW_UNAUTHENTICATED} + - AUTO_DELETE_EVERY_N_HOURS=${AUTO_DELETE_EVERY_N_HOURS} + - HIDE_HISTORY=${HIDE_HISTORY} + - LANGUAGE=${LANGUAGE} + - UNAUTHENTICATED_USER_SHARING=${UNAUTHENTICATED_USER_SHARING} + - MAX_CONVERT_PROCESS=${MAX_CONVERT_PROCESS} volumes: - /mnt/appdata/convertx/data:/app/data labels: