I'm using **swag **as reverse proxy with authelia.
If i try to connect via proxy I get the error message 'host validation failed' and to check the logs which doesnt show anything for my timestamp.
However if I forward the port and use an IP, I do see the login screen and can log in successfully.
Compose:
jellyseerr:
image: 'ghcr.io/seerr-team/seerr:v3.1.1'
init: true
container_name: seerr
environment:
- LOG_LEVEL=debug
- TZ=Europe/Amsterdam
volumes:
- '/arr/seerr/app/config:/app/config'
- '/data/media:/data/media'
networks:
- default
- proxy
healthcheck:
test: wget --no-verbose --tries=1 --spider http://localhost:5055/api/v1/settings/public || exit 1
start_period: 20s
timeout: 3s
interval: 15s
retries: 3
restart: unless-stopped
labels:
- "diun.enable=true"
Any ideas?