First working version of foundryvtt
This commit is contained in:
parent
e3fa1bb08f
commit
b579b307fd
1 changed files with 20 additions and 17 deletions
|
@ -6,34 +6,37 @@
|
|||
"foundryvtt.peninsula.industries" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/" = {
|
||||
proxyPass = "http://localhost:30000";
|
||||
proxyWebsockets = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
containers.foundryvtt = {
|
||||
autoStart = true;
|
||||
config = { config, pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
||||
(fetchzip {
|
||||
forwardPorts = [{
|
||||
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;
|
||||
})
|
||||
|
||||
nodejs-18_x
|
||||
];
|
||||
|
||||
};
|
||||
in {
|
||||
systemd.services."foundryvtt" = {
|
||||
requires = [ "network-online.target" ];
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
serviceConfig = {
|
||||
Restart = "on-failure";
|
||||
ExecStart = "echo Hi, %u";
|
||||
DynamicUser = "yes";
|
||||
};
|
||||
script = ''
|
||||
mkdir -p /var/lib/foundryvtt
|
||||
${pkgs.nodejs-18_x}/bin/node ${foundryvtt}/resources/app/main.js --dataPath=/var/lib/foundryvtt
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue