42 lines
1.2 KiB
Django/Jinja
42 lines
1.2 KiB
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
# Fail2Ban configuration file
|
|
|
|
[Definition]
|
|
|
|
# Option: loglevel
|
|
# Notes.: Set the log level output.
|
|
# 1 = ERROR
|
|
# 2 = WARN
|
|
# 3 = INFO
|
|
# 4 = DEBUG
|
|
# Values: NUM Default: 3
|
|
#
|
|
loglevel = {{ fail2ban_loglevel }}
|
|
|
|
# Option: logtarget
|
|
# Notes.: Set the log target. This could be a file, SYSLOG, STDERR or STDOUT.
|
|
# Only one log target can be specified.
|
|
# Values: STDOUT STDERR SYSLOG file Default: /var/log/fail2ban.log
|
|
#
|
|
logtarget = {{ fail2ban_logtarget }}
|
|
{% if fail2ban_logtarget == 'SYSLOG' %}
|
|
syslog-target = {{ fail2ban_syslog_target }}
|
|
syslog-facility = {{ fail2ban_syslog_facility }}
|
|
{% endif %}
|
|
|
|
# Option: socket
|
|
# Notes.: Set the socket file. This is used to communicate with the daemon. Do
|
|
# not remove this file when Fail2ban runs. It will not be possible to
|
|
# communicate with the server afterwards.
|
|
# Values: FILE Default: /var/run/fail2ban/fail2ban.sock
|
|
#
|
|
socket = {{ fail2ban_socket }}
|
|
|
|
# Option: pidfile
|
|
# Notes.: Set the PID file. This is used to store the process ID of the
|
|
# fail2ban server.
|
|
# Values: [ FILE ] Default: /var/run/fail2ban/fail2ban.pid
|
|
#
|
|
pidfile = {{ fail2ban_pidfile }}
|