Add cryptpad
This commit is contained in:
parent
bca81cc9c2
commit
2e99f5b18d
2 changed files with 24 additions and 0 deletions
23
nixos/boxes/vpsfree1/cryptpad.nix
Normal file
23
nixos/boxes/vpsfree1/cryptpad.nix
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
{ config, pkgs, inputs, lib, ... }: {
|
||||||
|
|
||||||
|
imports = [ ../nginx.nix ];
|
||||||
|
|
||||||
|
services.nginx = {
|
||||||
|
virtualHosts = {
|
||||||
|
"notes.purrfect.estate" = {
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
locations."/" = {
|
||||||
|
proxyPass = "http://localhost:9005";
|
||||||
|
proxyWebsockets = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
virtualisation.oci-containers.containers.cryptpad = {
|
||||||
|
image = "promasu/cryptpad";
|
||||||
|
ports = [ "9005:3000" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -9,6 +9,7 @@
|
||||||
../../server-common.nix
|
../../server-common.nix
|
||||||
../../tailscale.nix
|
../../tailscale.nix
|
||||||
./foundryvtt.nix
|
./foundryvtt.nix
|
||||||
|
./cryptpad.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
systemd.extraConfig = ''
|
systemd.extraConfig = ''
|
||||||
|
|
Loading…
Reference in a new issue