HermitNix_DEPRECATED/services/nginx.nix

12 lines
218 B
Nix
Raw Normal View History

2023-10-20 21:52:37 +00:00
{ config, pkgs, ... }:
{
services.nginx = {
enable = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
};
}