Get Tandoor and Wallabag working in Docker Compose

Podman compose kept crashing, switching back to Docker without any other changes fixed things... :(
This commit is contained in:
Gene Liverman 2024-04-11 17:28:55 -04:00
parent cb6b77b813
commit bf76a1dbc3
2 changed files with 19 additions and 7 deletions

View file

@ -136,14 +136,14 @@ in {
enableACME = true;
acmeRoot = null;
forceSSL = true;
locations."/".proxyPass = "http://${mini_watcher}:8090";
locations."/".proxyPass = "http://${backend_ip}:8090";
};
"tandoor.${home_domain}" = {
listen = [{ port = https_port; addr = "0.0.0.0"; ssl = true; }];
enableACME = true;
acmeRoot = null;
forceSSL = true;
locations."/".proxyPass = "http://${mini_watcher}:8080";
locations."/".proxyPass = "http://${backend_ip}:8080";
};
};
};