13 lines
222 B
Nix
13 lines
222 B
Nix
{ ... }:
|
|
|
|
{
|
|
services.nginx = {
|
|
enable = true;
|
|
appendHttpConfig = ''
|
|
access_log off;
|
|
'';
|
|
};
|
|
|
|
networking.firewall.allowedTCPPorts = [ 8443 31820 ];
|
|
networking.firewall.allowedUDPPorts = [ 8443 ];
|
|
}
|