1
0
Fork 0

mediaserver: add nginx

This commit is contained in:
Daniel Kempkens 2023-04-14 15:37:59 +02:00
parent 1af46ec9e9
commit 817215c64b
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM

View file

@ -29,15 +29,12 @@
networking.firewall.interfaces = builtins.listToAttrs networking.firewall.interfaces = builtins.listToAttrs
(builtins.map (builtins.map
(iface: (iface:
let
xx = builtins.trace iface iface;
in
{ {
name = xx; name = iface;
value = { value = {
allowedTCPPorts = [ 80 443 ]; allowedTCPPorts = [ 80 443 ];
allowedUDPPorts = [ 443 ]; allowedUDPPorts = [ 443 ];
}; };
}) })
(lib.mapAttrsToList (name: value: value.matchConfig.Name) config.systemd.network.networks ++ [ "tailscale0" ])); (builtins.filter builtins.isString (lib.mapAttrsToList (name: value: value.matchConfig.Name) config.systemd.network.networks ++ [ "tailscale0" ])));
} }