Skip to content

Commit 63050aa

Browse files
svenvg93gitbook-bot
authored andcommitted
GITBOOK-3: No subject
1 parent 241c2c3 commit 63050aa

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

getting-started/installation/installation.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ A full list of released versions can be found [here](https://fleet.linuxserver.i
2323
{% tabs %}
2424
{% tab title="SQLite" %}
2525
```yaml
26-
version: '3.4'
2726
services:
2827
speedtest-tracker:
2928
container_name: speedtest-tracker
@@ -51,7 +50,6 @@ services:
5150
5251
{% tab title="MariaDB/MySQL" %}
5352
```yaml
54-
version: '3.4'
5553
services:
5654
speedtest-tracker:
5755
container_name: speedtest-tracker
@@ -98,7 +96,6 @@ volumes:
9896
9997
{% tab title="Postgres" %}
10098
```yaml
101-
version: '3.4'
10299
services:
103100
speedtest-tracker:
104101
container_name: speedtest-tracker

getting-started/installation/qnap.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ A full list of released versions can be found [here](https://fleet.linuxserver.i
2020
{% endhint %}
2121

2222
```yaml
23-
version: '3.4'
2423
services:
2524
speedtest-tracker:
2625
container_name: speedtest-tracker

other/proxies.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Setup for when using a Reserve Proxy
2+
description: Installation guides for when using Reverse Proxies
33
---
44

55
# Proxies
@@ -8,10 +8,13 @@ description: Setup for when using a Reserve Proxy
88

99
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.
1010

11+
{% hint style="info" %}
12+
A full list of released versions can be found [here](https://fleet.linuxserver.io/image?name=linuxserver/speedtest-tracker)
13+
{% endhint %}
14+
1115
Docker-Compose:
1216

1317
```yaml
14-
version: '3.4'
1518
services:
1619
speedtest-tracker:
1720
container_name: speedtest-tracker
@@ -33,8 +36,8 @@ services:
3336
- "traefik.http.routers.speedtest-tracker.tls=true"
3437
- "traefik.http.routers.speedtest-tracker.tls.certresolver=yourresolver"
3538
- "traefik.http.services.speedtest-tracker.loadbalancer.server.port=80"
36-
image: lscr.io/linuxserver/speedtest-tracker:latest
39+
image: lscr.io/linuxserver/speedtest-tracker:0.20.6
3740
restart: unless-stopped
3841
```
3942
40-
<table><thead><tr><th width="261">Added compose part </th><th>Description</th></tr></thead><tbody><tr><td><code>APP_URL</code></td><td>URL you want to access the WebGui on.</td></tr><tr><td><code>traefik.enable=true</code></td><td>Explicitly tell Traefik to expose this container</td></tr><tr><td><code>traefik.http.routers.speedtest-tracker.rule=Host(`speedtest.yourdomain.com`)</code></td><td>The domain the service will respond to</td></tr><tr><td><code>traefik.http.routers.speedtest-tracker.entrypoints=websecure</code></td><td>Allow request only from the predefined entry point</td></tr><tr><td><code>traefik.http.routers.speedtest-tracker.tls=true</code></td><td>When a TLS section is specified, it instructs Traefik that the current router is dedicated to HTTPS requests only</td></tr><tr><td><code>traefik.http.routers.speedtest-tracker.tls.certresolver=yourresolver</code></td><td>Explicitly tell Traefik which Certificate provider to use matching your Traefik configuration </td></tr><tr><td><code>traefik.http.services.speedtest-tracker.loadbalancer.server.port=80</code></td><td>Explicitly tell Traefik port to use to connect to the container </td></tr></tbody></table>
43+
<table><thead><tr><th width="261">Added compose part</th><th>Description</th></tr></thead><tbody><tr><td><code>APP_URL</code></td><td>URL you want to access the WebGui on.</td></tr><tr><td><code>traefik.enable=true</code></td><td>Explicitly tell Traefik to expose this container</td></tr><tr><td><code>traefik.http.routers.speedtest-tracker.rule=Host(`speedtest.yourdomain.com`)</code></td><td>The domain the service will respond to</td></tr><tr><td><code>traefik.http.routers.speedtest-tracker.entrypoints=websecure</code></td><td>Allow request only from the predefined entry point</td></tr><tr><td><code>traefik.http.routers.speedtest-tracker.tls=true</code></td><td>When a TLS section is specified, it instructs Traefik that the current router is dedicated to HTTPS requests only</td></tr><tr><td><code>traefik.http.routers.speedtest-tracker.tls.certresolver=yourresolver</code></td><td>Explicitly tell Traefik which Certificate provider to use matching your Traefik configuration</td></tr><tr><td><code>traefik.http.services.speedtest-tracker.loadbalancer.server.port=80</code></td><td>Explicitly tell Traefik port to use to connect to the container</td></tr></tbody></table>

0 commit comments

Comments
 (0)