diff options
author | stuebinm | 2022-04-04 19:58:20 +0200 |
---|---|---|
committer | stuebinm | 2022-04-04 19:58:20 +0200 |
commit | ffe0f4453bc061e7918c6a618656e15ca6de7749 (patch) | |
tree | 2ac0c8488d001d38ed9f1deba1a413f641ba374b | |
parent | afcaf310b923d55e41d6120d1ccaade136e66691 (diff) |
chaski: remove walint
this was a test instance for divoc bb3 which is no longer needed
-rw-r--r-- | chaski/configuration.nix | 2 | ||||
-rw-r--r-- | chaski/services/walint.nix | 25 |
2 files changed, 1 insertions, 26 deletions
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; - }; - -} |