summaryrefslogtreecommitdiff
path: root/hosts/cirrus/ddix.nix
blob: b33e0965b3da991da31b4e5efbb089f9c6cf9a62 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ config, ... }: {
  services.nginx.virtualHosts = {
    "dd-ix.net" = {
      enableACME = true;
      forceSSL = true;
      locations."/" = {
        extraConfig = ''
          return 307 https://c3d2.de;
        '';
      };
    };
    "www.dd-ix.net" = {
      enableACME = true;
      forceSSL = true;
      locations."/" = {
        extraConfig = ''
          return 307 https://c3d2.de;
        '';
      };
    };
  };
}