nix-infra/config/hosts/public-web-static/nginx.nix
2023-10-07 04:29:08 +02:00

9 lines
153 B
Nix

{ ... }:
{
services.nginx.enable = true;
networking.firewall.allowedTCPPorts = [ 8443 31820 ];
networking.firewall.allowedUDPPorts = [ 8443 ];
}