diff options
author | stuebinm | 2022-03-07 19:31:48 +0100 |
---|---|---|
committer | stuebinm | 2022-03-07 19:32:07 +0100 |
commit | 540455a21b327dde2147a1df01e6bb732fd443ae (patch) | |
tree | f1e792d0d81ad284d0ec47a1ffbdb5eae20e80ac /chaski/services/walint.nix | |
parent | ace1a7a4f5bf6eacf7238fbf501ee006305b9bd8 (diff) |
update sources
Diffstat (limited to '')
-rw-r--r-- | chaski/services/walint.nix | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/chaski/services/walint.nix b/chaski/services/walint.nix index 0b17e22..f836bab 100644 --- a/chaski/services/walint.nix +++ b/chaski/services/walint.nix @@ -9,12 +9,15 @@ path = [ pkgs.git ]; script = '' cd ${(import inputs.walint).walint-server} - ./bin/walint-server + ./bin/walint-mapserver ''; }; services.nginx.virtualHosts."walint.stuebinm.eu" = { - locations."/".proxyPass = "http://localhost:8080"; + locations."/" = { + proxyPass = "http://localhost:8080"; + proxyWebsockets = true; + }; enableACME = true; forceSSL = true; }; |