Hi,
I Install crowdsec in two server. Both server have nginx + php. I already install
- crowdsec firewall bouncer
- crowdsec nginx bouncer
On the first server, there is no problem. But on the second server crowdsec ban it’s own public IP (http-crawl-non_statics).
I already add a new whitelist on /etc/crowdsec/parsers/s02-enrich/mywhitelist.yaml
name: crowdsecurity/whitelists
description: “Whitelist events from my ip addresses”
whitelist:
reason: “my ip ranges”
ip:
- xxx.xxx.xxx.xxx
and also add additional whitelist on /etc/rowdsec/parsers/s02-enrich/whitelist.yaml
name: crowdsecurity/whitelists
description: “Whitelist events from private ipv4 addresses”
whitelist:
reason: “private ipv4/ipv6 ip/ranges”
ip:
- “127.0.0.1”
- “::1”
cidr:
- “192.168.0.0/16”
- “10.0.0.0/8”
- “172.16.0.0/12”
- “xxx.xxx.xxx.xxx/32”
expression:
- “‘domain.com’ in evt.Parsed.requers”
- “‘api.domain.com’ in evt.Parsed.request”
When I activate crowdsec, and brows to website, it will give error 500 (I use laravel on that website).
Is there any clue to check, with my configuration ?
Best regards