From 850db72f92dece673b8bde985cb0a31ebe82db6a Mon Sep 17 00:00:00 2001 From: AdrienPoupa Date: Fri, 3 Nov 2023 16:34:48 -0400 Subject: [PATCH] fix(qbittorrent): #35 change healthcheck endpoint to fix web UI crash --- README.md | 2 -- docker-compose.yml | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 0bd6df8..ccc230c 100644 --- a/README.md +++ b/README.md @@ -195,8 +195,6 @@ The web UI login page can be disabled on for the local network in Settings > Web 172.17.0.0/16 ``` -Please enable `Bypass authentication for clients on localhost` as well to make qBittorrent's healthcheck work as well. - ## Jellyfin To enable [hardware transcoding](https://jellyfin.org/docs/general/administration/hardware-acceleration/), diff --git a/docker-compose.yml b/docker-compose.yml index fbffdd2..a37a175 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -239,7 +239,7 @@ services: - ${DOWNLOAD_ROOT}:/data/torrents restart: always healthcheck: - test: [ "CMD", "curl", "--fail", "http://127.0.0.1:8080/api/v2/app/version" ] + test: [ "CMD", "curl", "--fail", "http://127.0.0.1:8080" ] interval: 5s retries: 10 network_mode: "service:vpn"