Files
ansible-role-csf/templates/csf.ignore.j2
Aaron Guise d4366fef2a
Some checks failed
CI / lint (push) Failing after 2m15s
CI / release (push) Has been skipped
CI / notify (push) Has been skipped
feat: Initial Project 🎉
2024-08-20 11:11:35 +12:00

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 %}