From de26e20ed468a54591aa1cc0f18213dd6bf9368d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Sat, 11 May 2024 17:47:55 -0300 Subject: [PATCH] phandom: remove wiki --- hosts/phantom/default.nix | 1 - hosts/phantom/renawiki.nix | 23 ----------------------- 2 files changed, 24 deletions(-) delete mode 100644 hosts/phantom/renawiki.nix diff --git a/hosts/phantom/default.nix b/hosts/phantom/default.nix index 7bb0fb0..919e681 100644 --- a/hosts/phantom/default.nix +++ b/hosts/phantom/default.nix @@ -10,7 +10,6 @@ ./syncthing.nix ./users.nix ./writefreely.nix - ./renawiki.nix ./email.nix ./forgejo.nix ]; diff --git a/hosts/phantom/renawiki.nix b/hosts/phantom/renawiki.nix deleted file mode 100644 index 5b21907..0000000 --- a/hosts/phantom/renawiki.nix +++ /dev/null @@ -1,23 +0,0 @@ -{ config, pkgs, inputs, ... }: { - services.mediawiki = { - enable = true; - name = "Rena Wiki"; - - webserver = "nginx"; - nginx.hostName = "renawiki.lelgenio.xyz"; - passwordFile = config.age.secrets.phantom-renawiki.path; - - extensions.VisualEditor = null; - }; - services.nginx.virtualHosts."renawiki.lelgenio.xyz" = { - enableACME = true; - forceSSL = true; - }; - - age.secrets.phantom-renawiki = { - file = ../../secrets/phantom-renawiki.age; - mode = "400"; - owner = "mediawiki"; - }; -} -