nix-infra/config/hosts/public-web-static/nginx.nix

13 lines
222 B
Nix

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