services.crowdsec.localConfig.postOverflows.s01Whitelist
NixOS option
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.
type: list of (YAML 1.1 value)Default
[ ]
Example
declared in: nixos/modules/services/security/crowdsec.nixView source on NixOS/nixpkgs →[
{
description = "Whitelist my reverse DNS";
name = "postoverflows/whitelist_my_dns_domain";
whitelist = {
expression = [
"evt.Enriched.reverse_dns endsWith '.local.'"
];
reason = "Don't ban me";
};
}
]