nixos: services: nextcloud: fix deprecated option

This commit is contained in:
Bruno BELANYI 2024-01-03 23:36:59 +01:00
parent e4f8214cb2
commit 10a3055136
1 changed files with 3 additions and 0 deletions

View File

@ -41,6 +41,9 @@ in
adminpassFile = cfg.passwordFile;
dbtype = "pgsql";
dbhost = "/run/postgresql";
};
extraOptions = {
overwriteProtocol = "https"; # Nginx only allows SSL
};