dengbiao 2 semanas atrás
pai
commit
4a65882b56
1 arquivos alterados com 4 adições e 4 exclusões
  1. +4
    -4
      app/mw/mw_limiter.go

+ 4
- 4
app/mw/mw_limiter.go Ver arquivo

@@ -16,10 +16,10 @@ func Limiter(c *gin.Context) {
limit := 500 // 限流次数
ttl := 2 // 限流过期时间
ip := utils.GetIP(c.Request)
if ip != "221.4.210.167" && c.Request.Host != "127.0.0.1:4000" {
e.OutErr(c, e.ERR, "系统维护中~")
return
}
//if ip != "221.4.210.167" && c.Request.Host != "127.0.0.1:4000" {
// e.OutErr(c, e.ERR, "系统维护中~")
// return
//}
// 读取token或者ip
token := c.GetHeader("Authorization")
// 判断是否已经超出限额次数


Carregando…
Cancelar
Salvar