summaryrefslogtreecommitdiff
path: root/chaski/services/walint.nix
diff options
context:
space:
mode:
authorstuebinm2022-04-04 19:58:20 +0200
committerstuebinm2022-04-04 19:58:20 +0200
commitffe0f4453bc061e7918c6a618656e15ca6de7749 (patch)
tree2ac0c8488d001d38ed9f1deba1a413f641ba374b /chaski/services/walint.nix
parentafcaf310b923d55e41d6120d1ccaade136e66691 (diff)
chaski: remove walint
this was a test instance for divoc bb3 which is no longer needed
Diffstat (limited to '')
-rw-r--r--chaski/services/walint.nix25
1 files changed, 0 insertions, 25 deletions
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;
- };
-
-}