morn: configure glance

This commit is contained in:
2025-04-22 18:34:34 +02:00
parent 93783fe482
commit bca8a78af9
4 changed files with 120 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{ config, values, ... }:
{
services.nginx = {
enable = true;
enableReload = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
};
networking.firewall.allowedTCPPorts = [ 80 443 ];
security.acme = {
acceptTerms = true;
defaults.email = "felix@albrigtsen.it";
};
}