Valkey drop-in configuration directory
======================================

Files in this directory matching *.conf are loaded automatically by
valkey-server at startup (via `include /etc/valkey/conf.d/*.conf` in
/etc/valkey/valkey.conf).

Use this to override settings or load modules without editing the main
conffile — fragments are applied in alphabetical order, with later
values overriding earlier ones.

Examples
--------

  # /etc/valkey/conf.d/10-memory.conf
  maxmemory 2gb
  maxmemory-policy allkeys-lru

  # /etc/valkey/conf.d/20-modules.conf
  loadmodule /usr/lib/valkey/modules/valkey-bloom.so

This directory is created empty by valkey-server. The README file may
be deleted; the wildcard include is safe when no fragments are
present.
