fix: remove enableACME as that'll never work with this setup, specify a port

This commit is contained in:
Ahwx 2025-04-24 15:53:34 +02:00
parent cbd2f99efb
commit f85065bfbc

View file

@ -9,7 +9,6 @@ in
services = {
nginx.virtualHosts.${domain} = {
forceSSL = true;
enableACME = true;
locations."/".proxyPass = "http://127.0.0.1:${toString config.services.plausible.server.port}";
};
@ -29,6 +28,7 @@ in
server = {
baseUrl = "https://${domain}";
secretKeybaseFile = "/home/liv/secrets/plausibleKeybaseFile";
port = 5829;
};
};
};