summary refs log tree commit diff stats
path: root/system/services/nginx/default.nix
blob: 204783b394f6c815ed7249e25f1754751fc5b422 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{...}: {
  networking.firewall = {
    allowedTCPPorts = [80 443];
  };
  services.nginx = {
    enable = true;
    virtualHosts = {
      "vhack.eu" = {
        forceSSL = true;
        enableACME = true;
        root = "/srv/www/vhack.eu";
      };
    };
  };
}