MyNixOS website logo
option

services.crowdsec.localConfig.postOverflows.s01Whitelist

A list of stage s01-whitelist specifications. Inside this list, you can specify Postoverflows Whitelists.

See https://docs.crowdsec.net/docs/whitelist/intro for details.

Declarations
Type
list of (YAML 1.1 value)
Default
[ ]
Example
[
  {
    description = "Whitelist my reverse DNS";
    name = "postoverflows/whitelist_my_dns_domain";
    whitelist = {
      expression = [
        "evt.Enriched.reverse_dns endsWith '.local.'"
      ];
      reason = "Don't ban me";
    };
  }
]