Adding connection limits

This commit is contained in:
Frederick F. Kautz IV
2015-04-26 16:14:51 -07:00
parent e68e0c28f7
commit 64f7d04cd1
2 changed files with 77 additions and 1 deletions
+3 -1
View File
@@ -92,8 +92,10 @@ func HTTPHandler(domain string, driver drivers.Driver) http.Handler {
}
h := validateHandler(conf, ignoreResourcesHandler(mux))
h = quota.BandwidthCap(h, 256*1024*1024, time.Duration(30*time.Minute))
h = quota.BandwidthCap(h, 1*1024*1024*1024, time.Duration(30*time.Minute))
h = quota.BandwidthCap(h, 1024*1024*1024, time.Duration(24*time.Hour))
h = quota.RequestLimit(h, 100, time.Duration(30*time.Minute))
h = quota.RequestLimit(h, 1000, time.Duration(24*time.Hour))
h = quota.ConnectionLimit(h, 5)
return h
}