fix(calibre): add env vars to support subdir reverse proxy
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-03-06 14:35:29 -05:00
parent 99ece0bd2f
commit 5e265ae184
2 changed files with 6 additions and 5 deletions

View file

@ -123,11 +123,7 @@ in {
radarr.reverseProxy = "${nosIP}:7878";
sabnzbd.reverseProxy = "${nosIP}:8382";
sonarr.reverseProxy = "${nosIP}:8989";
calibre = {
experimental = true;
reverseProxy = "${nosIP}:8580";
};
calibre.reverseProxy = "${nosIP}:8580";
qbittorent = {
subDirName = "qbt";

View file

@ -12,6 +12,11 @@ in {
PUID = "1000";
PGID = "1000";
TZ = "America/New_York";
# WebUI vars
SUBFOLDER = "/calibre/";
TITLE = "CalibreDB";
NO_DECOR = "true";
};
volumes = ["${rwPath}/data-db:/config"];