feat(abaduh): tunne nextcloud to consume less memory

This commit is contained in:
Guz
2025-09-17 22:25:04 -03:00
parent 829508d2a3
commit 5f0e7a7435

View File

@@ -56,12 +56,24 @@ in {
};
settings = {
"auth.authtoken.v1.disabled" = true;
debug = false;
default_language = "pt_BR";
default_locale = "pt_BR";
default_phone_region = "BR";
default_timezone = config.time.timeZone;
loglevel = 2;
maintenance_window_start = 4; # 1:00 AM at UTC-3
trusted_proxies = ["127.0.0.1"];
};
phpExtraExtensions = all:
with all; [
opcache
];
phpOptions = {
"opcache.revalidate_freq" = 60;
"opcache.save_comments" = 1;
"opcache.jit" = 1255;
"opcache.jit_buffer_size" = "8M";
};
};
}