diff options
author | Fredrik Ekre <ekrefredrik@gmail.com> | 2022-03-16 17:39:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-16 12:39:13 -0400 |
commit | df31ac0e09c244718f0c4d8c9088c44de46575ed (patch) | |
tree | 31fceca4e4c170bc6701ecf6a6eb8ced72a00d3b /docs | |
parent | 0b15a729cf49e8287e720f7b4893231ca5a184e4 (diff) | |
download | gitea-df31ac0e09c244718f0c4d8c9088c44de46575ed.tar.gz gitea-df31ac0e09c244718f0c4d8c9088c44de46575ed.zip |
Fixed log path in fail2ban documentation (#19103)
This updates the log path in the [gitea-docker] jail configuration
to match the path in the [gitea] jail, which was updated in #13726.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/content/doc/usage/fail2ban-setup.en-us.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/doc/usage/fail2ban-setup.en-us.md b/docs/content/doc/usage/fail2ban-setup.en-us.md index 0821b23a9f..d1ff633246 100644 --- a/docs/content/doc/usage/fail2ban-setup.en-us.md +++ b/docs/content/doc/usage/fail2ban-setup.en-us.md @@ -89,7 +89,7 @@ chain in **iptables**. Configure it in `/etc/fail2ban/jail.d/gitea-docker.conf`: [gitea-docker] enabled = true filter = gitea -logpath = /home/git/gitea/log/gitea.log +logpath = /var/lib/gitea/log/gitea.log maxretry = 10 findtime = 3600 bantime = 900 |