More aggressive rate limit

This commit is contained in:
Manu Mtz-Almeida
2015-05-14 20:43:33 +02:00
parent 3f48e0d45c
commit ef93e8beff
2 changed files with 7 additions and 4 deletions

View File

@ -27,7 +27,7 @@ func StartGin() {
gin.SetMode(gin.ReleaseMode)
router := gin.New()
router.Use(rateLimit, gin.Recovery(), gin.Logger())
router.Use(rateLimit, gin.Recovery())
router.LoadHTMLGlob("resources/*.templ.html")
router.Static("/static", "resources/static")
router.GET("/", index)