update dependencies, add zerforschen.plus to lpt2 as a test

This commit is contained in:
Vinzenz Schroeter 2025-04-07 19:43:41 +02:00
parent 5fc8fe8ac6
commit 869213eb02
4 changed files with 98 additions and 27 deletions

View file

@ -1,6 +1,6 @@
{ ... }:
{
imports = [ ./nginx.nix ];
imports = [ ./zerforschen-plus.nix ];
config = {
networking.networkmanager.enable = true;
@ -37,5 +37,7 @@
};
};
};
networking.firewall.allowedTCPPorts = [ 8776 ];
};
}

View file

@ -0,0 +1,40 @@
{
pkgs,
system,
inputs,
...
}:
{
security.acme = {
acceptTerms = true;
defaults.email = "acme@zerforschen.plus";
};
security.pam.services.nginx.setEnvironment = false;
systemd.services.nginx.serviceConfig = {
SupplementaryGroups = [ "shadow" ];
};
services.nginx = {
enable = true;
additionalModules = [ pkgs.nginxModules.pam ];
recommendedProxySettings = true;
recommendedTlsSettings = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
virtualHosts = {
"zerforschen.plus" = {
#addSSL = true;
#enableACME = true;
root = inputs.zerforschen-plus.packages."${pkgs.system}".zerforschen-plus-content;
};
};
};
#networking.firewall.allowedTCPPorts = [
# 80
# 443
#];
}