fix(teedy): use correct port for proxypass

since using network=host, the ports directive has no effect
This commit is contained in:
Khaïs COLIN 2024-08-25 13:32:12 +02:00
parent 6ad28c54bf
commit def10ec06d
2 changed files with 1 additions and 4 deletions

View file

@ -30,7 +30,7 @@
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://localhost:7778";
proxyPass = "http://localhost:8080";
};
};
};

View file

@ -7,9 +7,6 @@ in
containers = {
teedy = {
image = "sismics/docs:v1.11";
ports = [
"7778:8080"
];
volumes = [
"/var/lib/teedy/data:/data"
];