Files
felnix/hosts/chapel/services/nginx.nix
T
2023-01-20 20:21:16 +01:00

12 lines
217 B
Nix

{ config, pkgs, ... }:
{
services.nginx = {
enable = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
};
}