about summary refs log tree commit diff
path: root/nixos/cobalt/services/nginx.nix
blob: cb5ced308f14b95f904883e82b2b3fccbde12bd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  services.nginx = {
    enable = true;

    recommendedGzipSettings = true;
    recommendedOptimisation = true;
    recommendedTlsSettings = true;
  };

  users.extraUsers.nginx.extraGroups = [ "acme" ];

  imports = [
    ./acme.nix
  ];
}