diff --git a/apps/authelia/compose.yaml b/apps/authelia/compose.yaml index f14a968..c8ffcc6 100644 --- a/apps/authelia/compose.yaml +++ b/apps/authelia/compose.yaml @@ -18,7 +18,6 @@ services: # All the domains within this comma separated list will have specific pages protected with Authelia. # Do NOT include non-stremio addon domains here. It would mean that those services would not be fully protected, or in most cases not protected at all. TEMPLATE_STREMIO_ADDON_HOSTNAMES: >- - ${AI_SEARCH_HOSTNAME}, ${AIOLISTS_HOSTNAME}, ${AIOSTREAMS_HOSTNAME}, ${AIOSTREMIO_HOSTNAME}, @@ -28,6 +27,7 @@ services: ${EASYNEWS_PLUS_PLUS_HOSTNAME}, ${MEDIAFUSION_HOSTNAME}, ${JACKETTIO_HOSTNAME}, + ${STREMIO_AI_SEARCH_HOSTNAME}, ${STREMIO_JACKETT_HOSTNAME}, ${STREMIO_LETTERBOXD_HOSTNAME}, ${STREMTHRU_HOSTNAME}, diff --git a/apps/stremio-ai-search/.env b/apps/stremio-ai-search/.env index 31422fc..ca2afd0 100644 --- a/apps/stremio-ai-search/.env +++ b/apps/stremio-ai-search/.env @@ -6,7 +6,7 @@ # docker compose up -d ai-search --build --force-recreate # If you do not want to use the community image at all, simply change the image name to something like `stremio-ai-search`. -HOST=https://${AI_SEARCH_HOSTNAME} +HOST=https://${STREMIO_AI_SEARCH_HOSTNAME} # Must be at least 32 characters long, # Generate one using the following command: diff --git a/apps/stremio-ai-search/compose.yaml b/apps/stremio-ai-search/compose.yaml index 903b7ec..45933ac 100644 --- a/apps/stremio-ai-search/compose.yaml +++ b/apps/stremio-ai-search/compose.yaml @@ -14,7 +14,7 @@ services: - 7000 labels: - "traefik.enable=true" - - "traefik.http.routers.stremio-ai-search.rule=Host(`${AI_SEARCH_HOSTNAME}`)" + - "traefik.http.routers.stremio-ai-search.rule=Host(`${STREMIO_AI_SEARCH_HOSTNAME}`)" - "traefik.http.routers.stremio-ai-search.entrypoints=websecure" - "traefik.http.routers.stremio-ai-search.tls.certresolver=letsencrypt" - "traefik.http.routers.stremio-ai-search.middlewares=authelia@docker"