summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authorGrigory Shipunov2023-09-03 21:22:14 +0200
committerGrigory Shipunov2023-09-03 21:22:14 +0200
commit1cea3dbf599dcaea1585e3bc78614df0385a4717 (patch)
tree78b390ae29da7967c3b6fd4c622efd2e307277dc /hosts
parentadc9b57fe7f6d77dae69b376a2680fecca33813c (diff)
remove dead code
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;
- '';
- };
- };
- };
-}