services: photoprism: add fail2ban rules
This commit is contained in:
parent
00df5ff49b
commit
897c1f57a8
|
@ -91,5 +91,23 @@ in {
|
|||
"${cfg.home}/storage"
|
||||
];
|
||||
};
|
||||
|
||||
services.fail2ban.jails = {
|
||||
photoprism = ''
|
||||
enabled = true
|
||||
filter = photoprism-failed-login
|
||||
port = http,https
|
||||
maxretry = 3
|
||||
logpath = /var/log/nginx/photoprism_access.log
|
||||
'';
|
||||
};
|
||||
|
||||
environment.etc = {
|
||||
"fail2ban/filter.d/photoprism-failed-login.conf".text = ''
|
||||
[Definition]
|
||||
failregex = ^<HOST> -.*"POST \/api\/v1\/session HTTP[^"]*" 400 .*$
|
||||
ignoreregex =
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue