reduced ip limit detection frequency to 30 sec (less logging, more precise)

changed maxretry in fail2ban jail config to 2 to fit above
This commit is contained in:
somebodywashere 2023-06-10 09:19:07 +00:00
parent 29d854eae7
commit eb1bf1148e

View file

@ -105,7 +105,7 @@ func processLogFile() {
checkError(err) checkError(err)
} }
} }
time.Sleep(10 * time.Second) time.Sleep(30 * time.Second)
} }
func GetAccessLogPath() string { func GetAccessLogPath() string {