summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
Diffstat (limited to 'hosts')
-rw-r--r--hosts/cirrus/ddix.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/hosts/cirrus/ddix.nix b/hosts/cirrus/ddix.nix
deleted file mode 100644
index b33e096..0000000
--- a/hosts/cirrus/ddix.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{ 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;
- '';
- };
- };
- };
-}