blob: 3ec3451532c47ae042f88850532717987aa3a8af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
{ config, lib, pkgs, ... }:
let
workadventure-nix = builtins.fetchGit {
url = "https://stuebinm.eu/git/workadventure-nix";
ref = "master";
};
wapkgs = import "${workadventure-nix.outPath}/wapkgs.nix" {
inherit pkgs;
lib = pkgs.lib;
};
frontdrv = wapkgs.workadventure-tcm.front.override {
environment = {
PUSHER_URL = "https://exneuland.stuebinm.eu/pusher";
START_ROOM_URL = "/_/global/world.di.c3voc.de/maps/main.json";
};
};
exneuland = import ../../../pkgs/exneuland.nix;
in
{
services.nginx = {
enable = true;
recommendedProxySettings = false;
virtualHosts."exneuland.stuebinm.eu" = {
root = "${frontdrv}/dist";
locations."/_/".tryFiles = "/index.html =404";
locations."/pusher" = {
proxyPass = "http://localhost:4000";
proxyWebsockets = true;
extraConfig = ''
add_header Access-Control-Allow-Origin https://exneuland.stuebinm.eu;
proxy_pass_request_headers on;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
'';
};
enableACME = true;
forceSSL = true;
};
};
systemd.services.exneuland = {
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
description = "exneuland backend for workadventure";
serviceConfig = {
ExecStart = "${exneuland}/bin/exneuland start";
Restart = "always";
};
};
}
|