You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi there,
My syno is hosted by a service provider.
I have several Docker apps deployed on it, and each have a reverse proxy working fine.
No way to make Speedtest Tracker working with the reverse proxy of my syno.
Here is my YAML file:
services:
speedtest-tracker:
image: lscr.io/linuxserver/speedtest-tracker:latest
container_name: speedtest-tracker
restart: unless-stopped
ports:
- 8443:443
environment:
- PUID=1026
- PGID=100
- APP_DEBUG=true
- APP_NAME=Speedtest Tracker
- APP_KEY=xxxxxxxxxxxxxxxxxxxxxxxxxx
- PUBLIC_DASHBOARD=true
- DB_CONNECTION=sqlite
- APP_TIMEZONE=Europe/Paris
- DISPLAY_TIMEZONE=Europe/Paris
- APP_URL=https://speedtest.mydomain.xxx
- ASSET_URL=https://speedtest.mydomain.xxx
volumes:
- /volume1/docker/speedtest-tracker/data:/config
- /volume1/docker/speedtest-tracker/keys:/config/keys
healthcheck:
test: curl -fSs http://localhost/api/healthcheck || exit 1
interval: 60s
retries: 5
start_period: 30s
timeout: 10s
volumes:
config:
ssl-keys:
Am I missing something ??
Thanks for your help ;)
Beta Was this translation helpful? Give feedback.
All reactions