summary refs log tree commit diff stats
path: root/system/services/redirects
diff options
context:
space:
mode:
Diffstat (limited to 'system/services/redirects')
-rw-r--r--system/services/redirects/default.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/system/services/redirects/default.nix b/system/services/redirects/default.nix
deleted file mode 100644
index 2e175ea..0000000
--- a/system/services/redirects/default.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{...}: {
-  services.nginx = {
-    enable = true;
-    virtualHosts."source.vhack.eu" = {
-      # Redirect all request to the codeberg source
-      locations."/".return = "301 https://codeberg.org/vhack.eu/nixos-server";
-
-      enableACME = false;
-      forceSSL = false;
-    };
-  };
-}