diff options
author | stuebinm | 2022-04-24 14:28:51 +0200 |
---|---|---|
committer | stuebinm | 2022-04-24 14:28:51 +0200 |
commit | da5582f390f80be8ebbcb1cc4b3cf7e92a1ee042 (patch) | |
tree | 18190bccc220c9399ba0be22ab1c7ed90188c475 /abbenay | |
parent | 981a508328722e861df8bf0a41546a34e58ddf55 (diff) |
Revert "blah exneuland divoc blah"
This reverts commit b6397c58b8ae7bed2bb170830a49df14918690a3.
Diffstat (limited to '')
-rw-r--r-- | abbenay/exneuland.nix | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/abbenay/exneuland.nix b/abbenay/exneuland.nix deleted file mode 100644 index 1c07355..0000000 --- a/abbenay/exneuland.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ config, lib, pkgs, ... }: - -{ - services.nginx = { - enable = true; - - virtualHosts.localhost = { - root = "/tmp/workadventure-xce/result/dist"; - locations = { - "/_/" = { - tryFiles = "/index.html =404"; - }; - - "/pusher/" = { - proxyPass = "http://localhost:4000"; - proxyWebsockets = true; - }; - - # "/maps/" = mkIf instanceConfig.nginx.maps.serve { - # alias = if instanceConfig.nginx.maps.path == null - # then instanceConfig.packageset.maps.outPath + "/workadventuremaps" - # else instanceConfig.nginx.maps.path; - # }; - - }; - - }; - }; -} |