summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--abbenay/exneuland.nix29
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;
- # };
-
- };
-
- };
- };
-}