···88 --replace github.com/TecharoHQ/anubis=github.com/kotx/anubis-static@v1.23.1
99 # ...any other plugins
1010```
1111+1212+## Example config
1313+1414+```Caddyfile
1515+localhost {
1616+ @anubis {
1717+ # This matcher allows you to select specific paths for Anubis to handle.
1818+ # If you want to handle all paths, remove this block and use `anubis {...}` instead!
1919+ path / # don't let AI scrapers browse the file index
2020+ path /.within.website/* # required for anubis to work
2121+2222+ not path /api/* # exclude api routes from anubis
2323+ }
2424+2525+ log http.handlers.anubis {
2626+ level DEBUG # optionally set log level
2727+ }
2828+2929+ anubis @anubis {
3030+ # This setting gets overridden a lot by the default bot policy.
3131+ difficulty 4
3232+3333+ # Custom bot policy file
3434+ policy_fname botPolicies.yaml
3535+3636+ private_key {$ED25519_PRIVATE_KEY} # for challenge persistence across restarts
3737+ # or if you're running multiple anubis instances
3838+ }
3939+4040+ file_server browse
4141+}
4242+```