From ffe0f4453bc061e7918c6a618656e15ca6de7749 Mon Sep 17 00:00:00 2001 From: stuebinm Date: Mon, 4 Apr 2022 19:58:20 +0200 Subject: chaski: remove walint this was a test instance for divoc bb3 which is no longer needed --- chaski/configuration.nix | 2 +- chaski/services/walint.nix | 25 ------------------------- 2 files changed, 1 insertion(+), 26 deletions(-) delete mode 100644 chaski/services/walint.nix diff --git a/chaski/configuration.nix b/chaski/configuration.nix index ee36e5a..4c9ef7e 100644 --- a/chaski/configuration.nix +++ b/chaski/configuration.nix @@ -8,12 +8,12 @@ imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix + # note: dns records deleted # ./services/jitsi.nix ./services/uplcg.nix ./services/woitb.nix ./services/geolocation.nix ./services/gtfs.nix - ./services/walint.nix ]; networking.firewall.allowedTCPPorts = [ 80 443 ]; diff --git a/chaski/services/walint.nix b/chaski/services/walint.nix deleted file mode 100644 index f836bab..0000000 --- a/chaski/services/walint.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ config, lib, pkgs, inputs, ... }: - -{ - systemd.services.walint = { - enable = true; - description = "test instance for walint & divoc"; - wantedBy = [ "multi-user.target" ]; - serviceConfig.Type = "simple"; - path = [ pkgs.git ]; - script = '' - cd ${(import inputs.walint).walint-server} - ./bin/walint-mapserver - ''; - }; - - services.nginx.virtualHosts."walint.stuebinm.eu" = { - locations."/" = { - proxyPass = "http://localhost:8080"; - proxyWebsockets = true; - }; - enableACME = true; - forceSSL = true; - }; - -} -- cgit v1.2.3