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