Nextcloud: Difference between revisions

Raboof (talk | contribs)
Onny (talk | contribs)
Redis caching is now enabled as default with NixOS 25.11
 
Line 114: Line 114:
};  
};  
</nowiki>}}
</nowiki>}}
=== Caching ===
[[Redis]] can be enabled as a performant caching backend using following configuration. This will bring faster page loads to your Nextcloud instance.
{{file|/etc/nixos/configuration.nix|nix|<nowiki>
services.nextcloud = {               
  enable = true;       
  configureRedis = true;
  [...]
};
</nowiki>}}
Note that APCu will still be used for local caching, as recommended by Nextcloud upstream.


=== Data storage ===
=== Data storage ===