server: disable jitsi, add acme to nextcloud, add office

This commit is contained in:
Kabbone 2024-02-12 12:25:27 +01:00
parent 88c2a62223
commit f750968224
Signed by: Kabbone
SSH Key Fingerprint: SHA256:A5zPB5I6u5V78V51c362BBdCwhDhfDUVbt7NfKdjWBY
4 changed files with 11 additions and 3 deletions

View File

@ -17,7 +17,7 @@
./nextcloud.nix
./matrix.nix
./coturn.nix
./jitsi.nix
#./jitsi.nix
]
# picom, polybar and sxhkd are pulled from desktop module

View File

@ -5,6 +5,8 @@
podman ={
enable = true;
autoPrune.enable = true;
dockerCompat = true;
#defaultNetwork.settings.dns_enabled = true;
};
};

View File

@ -46,7 +46,7 @@
services.onlyoffice = {
enable = true;
hostname = "localhost";
postgresName = "onlyofficedb";
postgresName = "onlyoffice";
postgresHost = "localhost";
postgresUser = "onlyoffice";
postgresPasswordFile = config.age.secrets."services/nextcloud/onlyofficedb".path;
@ -91,4 +91,9 @@
requires = ["postgresql.service"];
after = ["postgresql.service"];
};
security.acme.defaults.email = "webmaster@kabtop.de";
security.acme.defaults.webroot = "/var/lib/acme/acme-challenge";
security.acme.acceptTerms = true;
}

View File

@ -29,7 +29,8 @@
host whatsappdb mautrixwa localhost scram-sha-256
host telegramdb mautrixtele localhost scram-sha-256
host signaldb mautrixsignal localhost scram-sha-256
host onlyofficedb onlyoffice localhost scram-sha-256
host onlyoffice onlyoffice localhost scram-sha-256
local onlyoffice onlyoffice peer
'';
initialScript = config.age.secrets."services/postgresql/initScript.sql".path;
};