mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 15:00:13 +01:00
fix: remove enableACME as that'll never work with this setup, specify a port
This commit is contained in:
parent
cbd2f99efb
commit
f85065bfbc
1 changed files with 1 additions and 1 deletions
|
|
@ -9,7 +9,6 @@ in
|
||||||
services = {
|
services = {
|
||||||
nginx.virtualHosts.${domain} = {
|
nginx.virtualHosts.${domain} = {
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
enableACME = true;
|
|
||||||
locations."/".proxyPass = "http://127.0.0.1:${toString config.services.plausible.server.port}";
|
locations."/".proxyPass = "http://127.0.0.1:${toString config.services.plausible.server.port}";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -29,6 +28,7 @@ in
|
||||||
server = {
|
server = {
|
||||||
baseUrl = "https://${domain}";
|
baseUrl = "https://${domain}";
|
||||||
secretKeybaseFile = "/home/liv/secrets/plausibleKeybaseFile";
|
secretKeybaseFile = "/home/liv/secrets/plausibleKeybaseFile";
|
||||||
|
port = 5829;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue