Compare commits

..

No commits in common. "a5886eb6d089da5f83687fa2082534314facbc9c" and "1d4a80ff86a16f4c5a3957500174f7697e6def20" have entirely different histories.

2 changed files with 8 additions and 12 deletions

View File

@ -66,12 +66,9 @@
}; };
nix = { nix = {
settings = { settings.trusted-users = [
trusted-users = [ "hydra"
"hydra" ];
];
allowed-uris = "http:// https://";
};
extraOptions = '' extraOptions = ''
secret-key-files = ${config.age.secrets."keys/nixsign".path} secret-key-files = ${config.age.secrets."keys/nixsign".path}

View File

@ -9,18 +9,15 @@
enable = true; enable = true;
hostName = "cloud.kabtop.de"; hostName = "cloud.kabtop.de";
https = true; https = true;
package = pkgs.nextcloud29; package = pkgs.nextcloud27;
database.createLocally = false; database.createLocally = false;
notify_push.enable = true; logType = "file";
caching = { caching = {
redis = true; redis = true;
apcu = false; apcu = false;
}; };
settings = { extraOptions = {
log_type = "file";
logfile = "nextcloud.log"; logfile = "nextcloud.log";
overwriteprotocol = "https";
default_phone_region = "DE";
redis = { redis = {
host = "/run/redis-nextcloud/redis.sock"; host = "/run/redis-nextcloud/redis.sock";
port = 0; port = 0;
@ -37,6 +34,8 @@
adminuser = "kabbone"; adminuser = "kabbone";
adminpassFile = config.age.secrets."services/nextcloud/adminpassFile".path; adminpassFile = config.age.secrets."services/nextcloud/adminpassFile".path;
dbpassFile = config.age.secrets."services/nextcloud/dbpassFile".path; dbpassFile = config.age.secrets."services/nextcloud/dbpassFile".path;
overwriteProtocol = "https";
defaultPhoneRegion = "DE";
}; };
phpOptions = { phpOptions = {
"opcache.interned_strings_buffer" = "16"; "opcache.interned_strings_buffer" = "16";