From 5c359ecbb89a8a601fd7e34cabfda0e738be9c62 Mon Sep 17 00:00:00 2001 From: Administrator Date: Thu, 18 Dec 2025 11:54:33 +0500 Subject: [PATCH] Update 2 files - /group_vars/all.yml - /roles/qbittorrent/templates/docker-compose.yml.j2 --- group_vars/all.yml | 4 ++-- roles/qbittorrent/templates/docker-compose.yml.j2 | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/group_vars/all.yml b/group_vars/all.yml index cc46d9a..6b3c0a2 100644 --- a/group_vars/all.yml +++ b/group_vars/all.yml @@ -323,8 +323,8 @@ qbittorrent_puid: 1000 qbittorrent_pgid: 1000 qbittorrent_port_webui: 8080 qbittorrent_port_torrent: 6881 -qbittorrent_user: "qbittorrent" -qbittorrent_password: "13qeadZC" +qbittorrent_webui_user: "admin" +qbittorrent_webui_password: "13qeadZC" qbittorrent_smb_credentials_dir: "/etc/smb-creds" qbittorrent_smb_creds: olimp: diff --git a/roles/qbittorrent/templates/docker-compose.yml.j2 b/roles/qbittorrent/templates/docker-compose.yml.j2 index 73eeb5c..62fc8ab 100644 --- a/roles/qbittorrent/templates/docker-compose.yml.j2 +++ b/roles/qbittorrent/templates/docker-compose.yml.j2 @@ -8,6 +8,8 @@ services: - PGID={{ qbittorrent_pgid }} - TZ={{ timezone }} - WEBUI_PORT=8080 + - WEBUI_USER={{ qbittorrent_webui_user }} + - WEBUI_PASS={{ qbittorrent_webui_password }} volumes: - "{{ qbittorrent_config_dir }}:/config" - "{{ qbittorrent_downloads_dir }}:/downloads"