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 ];
|
imports = [ ../nginx.nix ];
|
||||||
|
|
||||||
services.nginx = {
|
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 = {
|
containers.foundryvtt = {
|
||||||
|
@ -21,26 +59,16 @@
|
||||||
containerPort = 30000;
|
containerPort = 30000;
|
||||||
hostPort = 30000;
|
hostPort = 30000;
|
||||||
}];
|
}];
|
||||||
config = { config, pkgs, ... }:
|
config = { config, pkgs, ... }: {
|
||||||
let
|
systemd.services."foundryvtt" = {
|
||||||
foundryvtt = pkgs.fetchzip {
|
requires = [ "network-online.target" ];
|
||||||
name = "foundryvtt";
|
wantedBy = [ "multi-user.target" ];
|
||||||
url = "file:///" + ./FoundryVTT-9.269.zip;
|
script = ''
|
||||||
postFetch = "";
|
mkdir -p /var/lib/foundryvtt
|
||||||
sha256 = "sha256-7YlF3tQ0XsN8CJO7WrjAhz8rHdl/pgqGUpjIJJnB0Eg=";
|
${pkgs.nodejs-18_x}/bin/node ${foundryvtt}/resources/app/main.js --dataPath=/var/lib/foundryvtt
|
||||||
stripRoot = false;
|
'';
|
||||||
};
|
serviceConfig.Restart = "always";
|
||||||
in {
|
|
||||||
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
|
|
||||||
'';
|
|
||||||
serviceConfig.Restart = "always";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue