mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-10 22:19:31 +01:00
don't check the real IP for bans on proxy-before-TLS
In the k8s PROXY-before-TLS setting, we don't know all the IPs of the load balancers, so we can't whitelist them, so they're at risk of being d-lined.
This commit is contained in:
parent
5687fbb185
commit
6838d19acc
@ -222,7 +222,10 @@ func (server *Server) RunClient(conn clientConn, proxyLine string) {
|
||||
isBanned, banMsg = server.checkTorLimits()
|
||||
} else {
|
||||
realIP = utils.AddrToIP(conn.Conn.RemoteAddr())
|
||||
isBanned, banMsg = server.checkBans(realIP)
|
||||
// skip the ban check for k8s-style proxy-before-TLS
|
||||
if proxyLine == "" {
|
||||
isBanned, banMsg = server.checkBans(realIP)
|
||||
}
|
||||
}
|
||||
|
||||
if isBanned {
|
||||
|
Loading…
Reference in New Issue
Block a user