Nathan 9ec71e0c9d
All checks were successful
Auto-Deploy Changed Stacks / deploy (push) Successful in 13s
fix: use HTTPS port 9443 for Authentik outpost connections
- Change AUTHENTIK_HOST from http://authentik_server:9000 to https://authentik_server:9443
- Authentik API only responds on HTTPS port, causing 404 errors on HTTP
- Resolves outpost connection failures
2026-06-14 09:00:22 -04:00

44 lines
1.5 KiB
YAML

###############################################################
# Networks
###############################################################
networks:
proxy-net:
name: proxy-net
external: true
###############################################################
# Services
###############################################################
services:
prowlarr:
image: lscr.io/linuxserver/prowlarr:2.3.5.5327-ls142
container_name: prowlarr
mem_limit: 2048m
environment:
- PUID=0
- PGID=0
- TZ=America/New_York
volumes:
- /mnt/appdata/prowlarr/data:/config
ports:
- 9696:9696
restart: unless-stopped
networks:
- proxy-net
prowlarr_outpost:
image: ghcr.io/goauthentik/proxy:2026.2.2
container_name: prowlarr_outpost
networks:
- proxy-net
environment:
AUTHENTIK_HOST: https://authentik_server:9443
AUTHENTIK_HOST_BROWSER: https://sso.castaldifamily.com
AUTHENTIK_TOKEN: 42FCcV9gmTfixaak77xW4eAZIMUUJ0u5vGsxvumfo1Lav5DIyLViDz4xqinE
AUTHENTIK_INSECURE: "false"
labels:
- "traefik.enable=true"
- "traefik.http.routers.prowlarr-proxy.entrypoints=websecure"
- "traefik.http.routers.prowlarr-proxy.rule=Host(`prowlarr.castaldifamily.com`)"
- "traefik.http.routers.prowlarr-proxy.tls=true"
- "traefik.http.routers.prowlarr-proxy.tls.certresolver=cloudflare"
- "traefik.http.services.prowlarr-proxy.loadbalancer.server.port=9000"