forgot to import

This commit is contained in:
Rouven Seifert 2023-04-13 14:28:09 +02:00
parent a207695b2b
commit e19d6002f0
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
2 changed files with 2 additions and 1 deletions

View file

@ -7,6 +7,7 @@
./hardware-configuration.nix
./modules/networks
./modules/nginx
./modules/purge
];
boot = {

View file

@ -12,7 +12,7 @@ in
enableACME = true;
forceSSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:${toString config.services.purge.port}";
proxyPass = "http://127.0.0.1:${toString config.services.purge.listenPort}";
};
};
}