This commit is contained in:
Aleksandr Lebedev 2026-02-01 14:17:23 +01:00
parent 53750afbe3
commit 3864e34ffd
4 changed files with 65 additions and 58 deletions

View file

@ -16,7 +16,7 @@
virtualisation.oci-containers.backend = "podman";
virtualisation.oci-containers.containers.aliasvault = {
image = "ghcr.io/aliasvault/aliasvault:0.25.0";
image = "ghcr.io/aliasvault/aliasvault:0.25.3";
autoStart = true;
ports = [

View file

@ -34,6 +34,7 @@ in {
sops.secrets."services/nextcloud/whiteboard" = {owner = "nextcloud";};
services.nextcloud = {
enable = true;
maxUploadSize = "80G";
package = pkgs.nextcloud32;
database.createLocally = true;
config = {

View file

@ -35,6 +35,9 @@ in {
enableACME = true;
forceSSL = true;
locations = config.services.nginx.virtualHosts."matrix.kylekrein.com".locations;
extraConfig = ''
client_max_body_size 1G;
'';
};
"turn.kylekrein.com" = {
@ -71,6 +74,9 @@ in {
enableACME = true;
forceSSL = true;
locations = matrixLocations;
extraConfig = ''
client_max_body_size 1G;
'';
};
"immich.kylekrein.com" = {