Skip to content

Commit 1afb696

Browse files
authored
Merge branch 'alexjustesen:main' into update_env_setup
2 parents 0b6a963 + f3f5ace commit 1afb696

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

other/health-check.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ You can also add this to your Docker Compose file so the Docker service can moni
1414
version: '3.4'
1515

1616
healthcheck:
17-
test: curl -fSs APP_URL/api/healthcheck || exit 1
17+
test: curl -fSs APP_URL/api/healthcheck | jq -r .message || exit 1
1818
interval: 10s
1919
retries: 3
2020
start_period: 30s
@@ -24,5 +24,5 @@ healthcheck:
2424
### Response
2525
2626
```json
27-
{"message":"Speedtest Tracker is running!"}
27+
Speedtest Tracker is running!
2828
```
Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
---
2-
description: Setup for when using Traefik as a Reserve Proxy
2+
description: Setup for when using a Reserve Proxy
33
---
44

5-
# Traefik Proxy
5+
# Proxies
6+
7+
## Traefik
68

79
Traefik can be used as a Reverse Proxy in front of Speedtest Tracker when you want to expose the Dashboard publicly with a trusted certificate. You will need at add the `APP_URL` envoirment and needed labels to the docker compose have treafik apply the certificate and routing.
810

@@ -17,6 +19,9 @@ services:
1719
- PUID=1000
1820
- PGID=1000
1921
- DB_CONNECTION=sqlite
22+
- APP_KEY=
23+
- SPEEDTEST_SCHEDULE=
24+
- SPEEDTEST_SERVERS=
2025
- APP_URL=speedtest.yourdomain.com
2126
volumes:
2227
- /path/to/data:/config

0 commit comments

Comments
 (0)