feat: Initial Project 🎉
Some checks failed
CI / lint (push) Failing after 2m15s
CI / release (push) Has been skipped
CI / notify (push) Has been skipped

This commit is contained in:
2024-08-20 11:11:35 +12:00
commit d4366fef2a
22 changed files with 998 additions and 0 deletions

25
templates/csf.ignore.j2 Normal file
View 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 %}