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

10 lines
194 B
Nix

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