From 892da04bd4c2e802ff522304e4a5572063322881 Mon Sep 17 00:00:00 2001 From: tavo Date: Sat, 2 Aug 2025 14:03:47 -0600 Subject: [PATCH] funnel --- immich/docker-compose.yml | 6 +++--- immich/example.env | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/immich/docker-compose.yml b/immich/docker-compose.yml index 15478d7..36dc512 100644 --- a/immich/docker-compose.yml +++ b/immich/docker-compose.yml @@ -30,7 +30,7 @@ services: - ${UPLOAD_LOCATION}:/data - /etc/localtime:/etc/localtime:ro env_file: - - ${REPO_PREFIX}immich.env + - immich.env #ports: # - '2283:2283' depends_on: @@ -51,7 +51,7 @@ services: volumes: - model-cache:/cache env_file: - - ${REPO_PREFIX}immich.env + - immich.env restart: always healthcheck: disable: false @@ -98,6 +98,6 @@ configs: } }, "AllowFunnel": { - "$${TS_CERT_DOMAIN}:443": false + "$${TS_CERT_DOMAIN}:443": ${TS_ALLOW_FUNNEL:-false} } } diff --git a/immich/example.env b/immich/example.env index fb35b15..b01e83e 100644 --- a/immich/example.env +++ b/immich/example.env @@ -1,6 +1,7 @@ TS_HOSTNAME=immich TS_AUTHKEY=tskey-client-nnn-nnn # Change required TS_EXTRA_ARGS=--advertise-tags=tag:container +TS_ALLOW_FUNNEL=false BASE_DATA_DIR=${BASE_DATA_DIR:-.} # If desired, change data store location #REPO_PREFIX=${REPO_PREFIX:-immich/}