DEVELOPMENT ENVIRONMENT

~liljamo/nix-arta

0e846ab2fa68c6ba9015c2a5af96aff0c0ea8df9 — Jonni Liljamo 20 days ago 2981d82
feat(systems/hosts/cloud): mess with nextcloud opcache settings
1 files changed, 4 insertions(+), 1 deletions(-)

M systems/hosts/cloud/default.nix
M systems/hosts/cloud/default.nix => systems/hosts/cloud/default.nix +4 -1
@@ 74,9 74,12 @@ in {
        };
        trusted_domains = ["nextcloud.rustylily.home.arpa"];
        trusted_proxies = ["10.1.2.10"];
        opcache.interned_strings_buffer = 64; # Megabytes of memory to use.
        overwriteprotocol = "https";

        # OPcache memory settings, values are in megabytes.
        opcache.interned_strings_buffer = 32; # Default is 8.
        opcache.memory_consumption = 256; # Default is 128.

        # Programs needed for... stuff.
        preview_ffmpeg_path = "${lib.getExe pkgs.ffmpeg}";
        memories.exiftool = "${lib.getExe pkgs.exiftool}";