summary refs log tree commit diff stats
path: root/system/services/nginx/default.nix
blob: f5af497d395772a195e1b70e81e8e735e5c77e94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{...}: {
  imports = [
    ./hosts.nix
  ];
  security.acme = {
    acceptTerms = true;
    defaults = {
      email = "admin@vhack.eu";
      webroot = "/var/lib/acme/acme-challenge";
    };
  };

  networking.firewall = {
    allowedTCPPorts = [80 443];
  };
  services.nginx = {
    enable = true;
  };
}