infra/puter/030-vm-nixos-neru/specific-aspect/nginx.nix

15 lines
302 B
Nix
Raw Normal View History

2025-12-01 13:23:24 +07:00
{
den.aspects = {
neru = {
nixos = {
2025-12-05 20:08:28 +07:00
services.nginx = {
enable = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
2025-12-01 13:23:24 +07:00
};
};
};
2025-12-05 20:08:28 +07:00
};
2025-12-01 13:23:24 +07:00
}