~ubuntu-branches/ubuntu/saucy/fail2ban/saucy

« back to all changes in this revision

Viewing changes to config/fail2ban.conf

  • Committer: Package Import Robot
  • Author(s): Yaroslav Halchenko
  • Date: 2013-05-13 11:58:56 UTC
  • mfrom: (1.1.15) (10.2.13 sid)
  • Revision ID: package-import@ubuntu.com-20130513115856-x7six9p53qcie0vl
Tags: 0.8.9-1
* New upstream release
  - significant improvements in documentation (Closes: #400416)
  - roundcube auth filter (Closes: #699442)
  - enforces C locale for dates (Closes: #686341)
  - provides bash_completion.d/fail2ban
* debian/jail.conf:
  - added findtime and documentation on those basic options from jail.conf
    (Closes: #704568)
  - added new sample jails definitions for ssh-route, ssh-iptables-ipset{4,6},
    roundcube-auth, sogo-auth, mysqld-auth
* debian/control:
  - suggest system-log-daemon (Closes: #691001)
  - boost policy compliance to 3.9.4
* debian/rules:
  - run fail2ban's unittests at build time but ignore the failures
    (there are still some known issues to fix up to guarantee robust testing
    in clean chroots etc).
    Only pyinotify was added to build-depends since gamin might still be
    buggy on older releases and get stuck, which would complicate
    backporting

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Fail2Ban main configuration file
2
2
#
3
 
# Comments: use '#' for comment lines and ';' for inline comments
 
3
# Comments: use '#' for comment lines and ';' (following a space) for inline comments
4
4
#
5
5
# Changes:  in most of the cases you should not modify this
6
6
#           file, but provide customizations in fail2ban.local file, e.g.:
24
24
# Option:  logtarget
25
25
# Notes.:  Set the log target. This could be a file, SYSLOG, STDERR or STDOUT.
26
26
#          Only one log target can be specified.
 
27
#          If you change logtarget from the default value and you are
 
28
#          using logrotate -- also adjust or disable rotation in the
 
29
#          corresponding configuration file
 
30
#          (e.g. /etc/logrotate.d/fail2ban on Debian systems)
27
31
# Values:  STDOUT STDERR SYSLOG file  Default:  /var/log/fail2ban.log
28
32
#
29
33
logtarget = /var/log/fail2ban.log
36
40
#
37
41
socket = /var/run/fail2ban/fail2ban.sock
38
42
 
 
43
# Option: pidfile
 
44
# Notes.: Set the PID file. This is used to store the process ID of the
 
45
#         fail2ban server.
 
46
# Values: FILE  Default:  /var/run/fail2ban/fail2ban.pid
 
47
#
 
48
pidfile = /var/run/fail2ban/fail2ban.pid
 
49