diff options
Diffstat (limited to 'chaski/services/walint.nix')
-rw-r--r-- | chaski/services/walint.nix | 25 |
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; - }; - -} |