From 69442191aaa957f0eb9921cd7ebed9c5dac543f7 Mon Sep 17 00:00:00 2001 From: mmomjian <50788000+mmomjian@users.noreply.github.com> Date: Fri, 1 Mar 2024 23:53:46 -0500 Subject: [PATCH 1/5] Update qnap.md --- getting-started/installation/qnap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting-started/installation/qnap.md b/getting-started/installation/qnap.md index d9fe25e..23604f0 100644 --- a/getting-started/installation/qnap.md +++ b/getting-started/installation/qnap.md @@ -34,7 +34,7 @@ services: - DB_PASSWORD=password volumes: - /path/to-data:/config - - /path/to/directory/web:/etc/ssl/web + - /path/to-custom-ssl-keys:/config/keys:ro image: lscr.io/linuxserver/speedtest-tracker:latest networks: qnet-network: From 6366b521b5f980e73bc16f08ecaf83d673ba967d Mon Sep 17 00:00:00 2001 From: mmomjian <50788000+mmomjian@users.noreply.github.com> Date: Fri, 1 Mar 2024 23:54:29 -0500 Subject: [PATCH 2/5] Update installation.md --- getting-started/installation/installation.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/getting-started/installation/installation.md b/getting-started/installation/installation.md index 636eb9f..c15a045 100644 --- a/getting-started/installation/installation.md +++ b/getting-started/installation/installation.md @@ -26,7 +26,7 @@ services: - DB_CONNECTION=sqlite volumes: - /path/to/data:/config - - /path/to/directory/web:/etc/ssl/web + - /path/to-custom-ssl-keys:/config/keys:ro image: lscr.io/linuxserver/speedtest-tracker:latest restart: unless-stopped ``` @@ -52,7 +52,7 @@ services: - DB_PASSWORD=password volumes: - /path/to/data:/config - - /path/to/directory/web:/etc/ssl/web + - /path/to-custom-ssl-keys:/config/keys:ro image: lscr.io/linuxserver/speedtest-tracker:latest restart: unless-stopped depends_on: @@ -92,7 +92,7 @@ services: - DB_PASSWORD=password volumes: - /path/to/data:/config - - /path/to/directory/web:/etc/ssl/web + - /path/to-custom-ssl-keys:/config/keys:ro image: lscr.io/linuxserver/speedtest-tracker:latest restart: unless-stopped depends_on: @@ -130,7 +130,7 @@ docker run -d --name speedtest-tracker --restart unless-stopped \ -e PGID=1000 \ -e DB_CONNECTION=sqlite \ -v /path/to/data:/config \ - -v /path/to/directory/web:/etc/ssl/web \ + -v /path/to-custom-ssl-keys:/config/keys:ro \ lscr.io/linuxserver/speedtest-tracker:latest ``` {% endtab %} @@ -149,7 +149,7 @@ docker run -d --name speedtest-tracker --restart unless-stopped \ -e DB_USERNAME= \ -e DB_PASSWORD= \ -v /path/to/data:/config \ - -v /path/to/directory/web:/etc/ssl/web \ + -v /path/to-custom-ssl-keys:/config/keys:ro \ lscr.io/linuxserver/speedtest-tracker:latest ``` {% endtab %} @@ -168,7 +168,7 @@ docker run -d --name speedtest-tracker --restart unless-stopped \ -e DB_USERNAME= \ -e DB_PASSWORD= \ -v /path/to/data:/config \ - -v /path/to/directory/web:/etc/ssl/web \ + -v /path/to-custom-ssl-keys:/config/keys:ro \ lscr.io/linuxserver/speedtest-tracker:latest ``` {% endtab %} From ed7aeaa8f33204220fda120591b77b4854da4ea1 Mon Sep 17 00:00:00 2001 From: mmomjian <50788000+mmomjian@users.noreply.github.com> Date: Fri, 1 Mar 2024 23:55:30 -0500 Subject: [PATCH 3/5] Update installation.md --- getting-started/installation/installation.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/getting-started/installation/installation.md b/getting-started/installation/installation.md index c15a045..e4392a1 100644 --- a/getting-started/installation/installation.md +++ b/getting-started/installation/installation.md @@ -10,6 +10,8 @@ description: >- Setting up your environment with Docker Compose is the recommended infrastructure pattern as it'll setup the application and a database for you. SQLite is fine for most installs but we also provide instructions for setting up MariaDB, MySQL and Postgres should you prefer those database drivers. +If you would like to provide your own SSL keys, they must be named `cert.crt` (full chain) and `cert.key` (private key), and mounted in the container folder `/config/keys`. + {% tabs %} {% tab title="SQLite" %} ```yaml From 604e7f1c2f47f9de1bf5f3e5168566345b8a920f Mon Sep 17 00:00:00 2001 From: mmomjian <50788000+mmomjian@users.noreply.github.com> Date: Fri, 1 Mar 2024 23:56:18 -0500 Subject: [PATCH 4/5] Update installation.md --- getting-started/installation/installation.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/getting-started/installation/installation.md b/getting-started/installation/installation.md index e4392a1..59ab35a 100644 --- a/getting-started/installation/installation.md +++ b/getting-started/installation/installation.md @@ -28,7 +28,7 @@ services: - DB_CONNECTION=sqlite volumes: - /path/to/data:/config - - /path/to-custom-ssl-keys:/config/keys:ro + - /path/to-custom-ssl-keys:/config/keys image: lscr.io/linuxserver/speedtest-tracker:latest restart: unless-stopped ``` @@ -54,7 +54,7 @@ services: - DB_PASSWORD=password volumes: - /path/to/data:/config - - /path/to-custom-ssl-keys:/config/keys:ro + - /path/to-custom-ssl-keys:/config/keys image: lscr.io/linuxserver/speedtest-tracker:latest restart: unless-stopped depends_on: @@ -94,7 +94,7 @@ services: - DB_PASSWORD=password volumes: - /path/to/data:/config - - /path/to-custom-ssl-keys:/config/keys:ro + - /path/to-custom-ssl-keys:/config/keys image: lscr.io/linuxserver/speedtest-tracker:latest restart: unless-stopped depends_on: @@ -132,7 +132,7 @@ docker run -d --name speedtest-tracker --restart unless-stopped \ -e PGID=1000 \ -e DB_CONNECTION=sqlite \ -v /path/to/data:/config \ - -v /path/to-custom-ssl-keys:/config/keys:ro \ + -v /path/to-custom-ssl-keys:/config/keys \ lscr.io/linuxserver/speedtest-tracker:latest ``` {% endtab %} @@ -151,7 +151,7 @@ docker run -d --name speedtest-tracker --restart unless-stopped \ -e DB_USERNAME= \ -e DB_PASSWORD= \ -v /path/to/data:/config \ - -v /path/to-custom-ssl-keys:/config/keys:ro \ + -v /path/to-custom-ssl-keys:/config/keys \ lscr.io/linuxserver/speedtest-tracker:latest ``` {% endtab %} @@ -170,7 +170,7 @@ docker run -d --name speedtest-tracker --restart unless-stopped \ -e DB_USERNAME= \ -e DB_PASSWORD= \ -v /path/to/data:/config \ - -v /path/to-custom-ssl-keys:/config/keys:ro \ + -v /path/to-custom-ssl-keys:/config/keys \ lscr.io/linuxserver/speedtest-tracker:latest ``` {% endtab %} From 4d520490c022c2fd9807f21ba8656b4399b6ccbd Mon Sep 17 00:00:00 2001 From: mmomjian <50788000+mmomjian@users.noreply.github.com> Date: Fri, 1 Mar 2024 23:57:26 -0500 Subject: [PATCH 5/5] Update qnap.md --- getting-started/installation/qnap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting-started/installation/qnap.md b/getting-started/installation/qnap.md index 23604f0..ac97185 100644 --- a/getting-started/installation/qnap.md +++ b/getting-started/installation/qnap.md @@ -34,7 +34,7 @@ services: - DB_PASSWORD=password volumes: - /path/to-data:/config - - /path/to-custom-ssl-keys:/config/keys:ro + - /path/to-custom-ssl-keys:/config/keys image: lscr.io/linuxserver/speedtest-tracker:latest networks: qnet-network: