rice/hosts/ami/nginx.nix
buffet 2def5b10eb
All checks were successful
/ check (push) Successful in 2m44s
refactor: move repeated nginx snippets into one file
2024-06-05 09:40:42 +00:00

10 lines
194 B
Nix

{
services.nginx = {
enable = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
};
}