another foundry instance
This commit is contained in:
parent
d9ee000b4a
commit
2a1631daac
1 changed files with 49 additions and 21 deletions
|
@ -1,4 +1,13 @@
|
|||
{ config, pkgs, inputs, lib, ... }: {
|
||||
{ config, pkgs, inputs, lib, ... }:
|
||||
let
|
||||
foundryvtt = pkgs.fetchzip {
|
||||
name = "foundryvtt";
|
||||
url = "file:///" + ./FoundryVTT-9.269.zip;
|
||||
postFetch = "";
|
||||
sha256 = "sha256-7YlF3tQ0XsN8CJO7WrjAhz8rHdl/pgqGUpjIJJnB0Eg=";
|
||||
stripRoot = false;
|
||||
};
|
||||
in {
|
||||
imports = [ ../nginx.nix ];
|
||||
|
||||
services.nginx = {
|
||||
|
@ -13,6 +22,35 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
virtualHosts = {
|
||||
"foundryvtt1.peninsula.industries" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://localhost:30001";
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
containers.foundryvtt1 = {
|
||||
autoStart = true;
|
||||
forwardPorts = [{
|
||||
containerPort = 30001;
|
||||
hostPort = 30001;
|
||||
}];
|
||||
config = { config, pkgs, ... }: {
|
||||
systemd.services."foundryvtt" = {
|
||||
requires = [ "network-online.target" ];
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
script = ''
|
||||
mkdir -p /var/lib/foundryvtt
|
||||
${pkgs.nodejs-18_x}/bin/node ${foundryvtt}/resources/app/main.js --dataPath=/var/lib/foundryvtt --port=30001
|
||||
'';
|
||||
serviceConfig.Restart = "always";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
containers.foundryvtt = {
|
||||
|
@ -21,16 +59,7 @@
|
|||
containerPort = 30000;
|
||||
hostPort = 30000;
|
||||
}];
|
||||
config = { config, pkgs, ... }:
|
||||
let
|
||||
foundryvtt = pkgs.fetchzip {
|
||||
name = "foundryvtt";
|
||||
url = "file:///" + ./FoundryVTT-9.269.zip;
|
||||
postFetch = "";
|
||||
sha256 = "sha256-7YlF3tQ0XsN8CJO7WrjAhz8rHdl/pgqGUpjIJJnB0Eg=";
|
||||
stripRoot = false;
|
||||
};
|
||||
in {
|
||||
config = { config, pkgs, ... }: {
|
||||
systemd.services."foundryvtt" = {
|
||||
requires = [ "network-online.target" ];
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
|
@ -41,6 +70,5 @@
|
|||
serviceConfig.Restart = "always";
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue