diff options
| author | somebodywashere <68244480+somebodywashere@users.noreply.github.com> | 2023-06-24 23:36:18 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-24 23:36:18 +0300 |
| commit | 6e22aa59e72a195c3436991ec830d45a220ce2c4 (patch) | |
| tree | e7e96ecfd1a909305148479300f2945e19be4b1c /web/web.go | |
| parent | 85df1301dc9c5ff3b9c85d53968841dc06c43b0f (diff) | |
Added IP Limit Management to x-ui menu, Tweaked IP Limit to check every 20s (#615)
Co-authored-by: Hamidreza <70919649+hamid-gh98@users.noreply.github.com>
Co-authored-by: Ho3ein <ho3ein.sanaei@gmail.com>
Diffstat (limited to 'web/web.go')
| -rw-r--r-- | web/web.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -250,8 +250,8 @@ func (s *Server) startTask() { // Check the inbound traffic every 30 seconds that the traffic exceeds and expires s.cron.AddJob("@every 30s", job.NewCheckInboundJob()) - // check client ips from log file every 30 sec - s.cron.AddJob("@every 30s", job.NewCheckClientIpJob()) + // check client ips from log file every 20 sec + s.cron.AddJob("@every 20s", job.NewCheckClientIpJob()) // Make a traffic condition every day, 8:30 var entry cron.EntryID |
