Monitoring: Limiter config

This commit is contained in:
Tobias Manske 2023-09-06 18:30:05 +02:00
parent 7676da010b
commit b9c38e4674
Signed by: tobias
GPG Key ID: 9164B527694A0709
2 changed files with 6 additions and 1 deletions

View File

@ -22,6 +22,9 @@ all:
host.nc.chaoswg.org: null
thonkpad.ka.chaoswg.org: null
mon1.hel1.chaoswg.org: null
monitoring:
hosts:
mon1.hel1.chaoswg.org: null
ci_apply:
hosts:
host.nc.chaoswg.org: null

View File

@ -31,7 +31,9 @@ block_ip = [
]
pass_ip = [
'65.108.60.208' # Monitoring
{% for host in groups['monitoring'] %}
'{{ hostvars[host].ansible_host }}', # Monitoring
{% endfor %}
# '192.168.0.0/16', # IPv4 private network
# 'fe80::/10' # IPv6 linklocal / wins over botdetection.ip_limit.filter_link_local
]