You've already forked ansible-role-csf
25 lines
792 B
Django/Jinja
25 lines
792 B
Django/Jinja
###############################################################################
|
|
# Copyright 2006-2018, Way to the Web Limited
|
|
# URL: http://www.configserver.com
|
|
# Email: sales@waytotheweb.com
|
|
###############################################################################
|
|
# The following IP addresses will be ignored by all lfd checks
|
|
# One IP address per line
|
|
# CIDR addressing allowed with a quaded IP (e.g. 192.168.254.0/24)
|
|
# Only list IP addresses, not domain names (they will be ignored)
|
|
#
|
|
|
|
127.0.0.1
|
|
# BEGIN GENERAL IGNORE LIST
|
|
{% for ip in csf_ignore | default([]) %}
|
|
{{ ip }}
|
|
{% endfor %}
|
|
# END GENERAL IGNORE LIST
|
|
{% if csf_ignore_host is defined %}
|
|
|
|
# BEGIN HOST SPECIFIC IGNORE LIST
|
|
{% for ip in csf_ignore_host %}
|
|
{{ ip }}
|
|
{% endfor %}
|
|
# END HOST SPECIFIC IGNORE LIST
|
|
{% endif %} |