You've already forked ansible-role-csf
feat: Initial Project 🎉
This commit is contained in:
25
templates/csf.ignore.j2
Normal file
25
templates/csf.ignore.j2
Normal file
@@ -0,0 +1,25 @@
|
||||
###############################################################################
|
||||
# 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 %}
|
||||
Reference in New Issue
Block a user