rice/hosts/ami/nginx.nix
2024-06-06 21:32:27 +00:00

12 lines
245 B
Nix

{
networking.firewall.allowedTCPPorts = [80 443];
services.nginx = {
enable = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
};
}