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