nixos-config/hosts/chapel/services/nginx.nix

12 lines
217 B
Nix
Raw Normal View History

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