summary refs log tree commit diff stats
path: root/system/services/nginx/default.nix
blob: 9a6667fc2cd5b98fc4ec2bb5357cbe9e108a12b6 (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 = "/srv/acme/";
    };
  };

  networking.firewall = {
    allowedTCPPorts = [80 443];
  };
  services.nginx = {
    enable = true;
  };
}
# vim: ts=2