update cryptpad

This commit is contained in:
Cyryl Płotnicki 2023-03-24 20:37:37 +00:00
parent 029205532c
commit 85b3182df4

View file

@ -1,18 +1,12 @@
{ { config, pkgs, inputs, lib, ... }: {
config, imports = [ ../nginx.nix ];
pkgs,
inputs,
lib,
...
}: {
imports = [../nginx.nix];
services.nginx = { services.nginx = {
virtualHosts = { virtualHosts = {
"notes.purrfect.estate" = { "notes.purrfect.estate" = {
forceSSL = true; forceSSL = true;
enableACME = true; enableACME = true;
serverAliases = ["notes-sandbox.purrfect.estate"]; serverAliases = [ "notes-sandbox.purrfect.estate" ];
locations."/" = { locations."/" = {
proxyPass = "http://127.0.0.1:9005"; proxyPass = "http://127.0.0.1:9005";
proxyWebsockets = true; proxyWebsockets = true;
@ -21,7 +15,8 @@
}; };
}; };
virtualisation.oci-containers.containers.cryptpad = { virtualisation.oci-containers.containers.cryptpad = {
image = "promasu/cryptpad:nginx"; image =
"promasu/cryptpad@sha256:29c61f69e41173188c0592e72f2273cf23a83f48e7d143337e2cd7fea441ed87";
volumes = [ volumes = [
"${./cryptpad.config.js}:/cryptpad/config/config.js" "${./cryptpad.config.js}:/cryptpad/config/config.js"
@ -39,6 +34,6 @@
CPAD_TRUSTED_PROXY = "0.0.0.0/0"; CPAD_TRUSTED_PROXY = "0.0.0.0/0";
CPAD_HTTP2_DISABLE = "true"; CPAD_HTTP2_DISABLE = "true";
}; };
ports = ["9005:80"]; ports = [ "9005:80" ];
}; };
} }