machine/serverle: enable nginx with separate network config

This commit is contained in:
Felix Buehler 2023-02-23 20:02:46 +01:00
parent 7085003f2a
commit 6d0b676cce
3 changed files with 39 additions and 4 deletions

View file

@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
{
networking.firewall.allowedTCPPorts = [
8080 # aria
];
networking = {
domain = "stunkymonkey.de";
search = [ "stunkymonkey.de" ];
};
}