1
0
Fork 0
dotfiles/system/nixos/nginx.nix

10 lines
194 B
Nix
Raw Normal View History

2023-03-05 22:51:30 +00:00
{
services.nginx = {
enable = true;
recommendedOptimisation = true;
recommendedGzipSettings = true;
recommendedBrotliSettings = true;
recommendedTlsSettings = true;
};
}