From f88d8bc51d4547be2aa10bb3dfd5efc0898a4f90 Mon Sep 17 00:00:00 2001 From: ltadeu6 Date: Mon, 25 May 2026 18:00:36 -0300 Subject: [PATCH] Fix Nextcloud warnings: opcache interned_strings_buffer=16, run mimetype repair --- hosts/NixOracle/configuration.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/hosts/NixOracle/configuration.nix b/hosts/NixOracle/configuration.nix index 6df70bf..fa6397b 100644 --- a/hosts/NixOracle/configuration.nix +++ b/hosts/NixOracle/configuration.nix @@ -145,6 +145,7 @@ in { adminpassFile = "/etc/nextcloud-secrets/admin-password"; dbtype = "pgsql"; }; + phpOptions."opcache.interned_strings_buffer" = "16"; settings = { default_phone_region = "BR"; maintenance_window_start = 1; @@ -167,6 +168,7 @@ in { defaultapp=files disabled=activity,calendar,contacts,dashboard,firstrunwizard,photos,weather_status,circles,recommendations,user_status,systemtags theme=dark,#7aa2f7,plain + repair=mimetypes '') ]; script = '' @@ -184,6 +186,8 @@ in { $occ config:app:set theming background --value="plain" $occ config:app:set theming name --value="Files" $occ config:app:set theming slogan --value="" + + $occ maintenance:repair --include-expensive ''; };