fix: the trusted proxies should support ipv6 address by default (#3033)

This commit is contained in:
Eric_Lee 2022-05-28 08:14:35 +08:00 committed by GitHub
parent f1e942889a
commit 87811a97bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
gin.go
View File

@ -195,7 +195,7 @@ func New() *Engine {
trees: make(methodTrees, 0, 9),
delims: render.Delims{Left: "{{", Right: "}}"},
secureJSONPrefix: "while(1);",
trustedProxies: []string{"0.0.0.0/0"},
trustedProxies: []string{"0.0.0.0/0", "::/0"},
trustedCIDRs: defaultTrustedCIDRs,
}
engine.RouterGroup.engine = engine