rice/hosts/ami/nginx.nix

13 lines
245 B
Nix
Raw Permalink Normal View History

{
2024-06-06 21:25:34 +00:00
networking.firewall.allowedTCPPorts = [80 443];
services.nginx = {
enable = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
};
}