Merge 79846244ca873b9ef721fc790e12e6c38f25bee0 into 0397e5e0c0f8f8176c29f7edd8f1bff8e45df780

This commit is contained in:
Cale Flatley 2024-04-10 15:14:18 -07:00 committed by GitHub
commit 4ff923f29c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

4
gin.go
View File

@ -391,7 +391,7 @@ func (engine *Engine) Run(addr ...string) (err error) {
if engine.isUnsafeTrustedProxies() {
debugPrint("[WARNING] You trusted all proxies, this is NOT safe. We recommend you to set a value.\n" +
"Please check https://pkg.go.dev/github.com/gin-gonic/gin#readme-don-t-trust-all-proxies for details.")
"Please check https://github.com/gin-gonic/gin/blob/master/docs/doc.md#dont-trust-all-proxies.")
}
address := resolveAddress(addr)
@ -512,7 +512,7 @@ func (engine *Engine) RunTLS(addr, certFile, keyFile string) (err error) {
if engine.isUnsafeTrustedProxies() {
debugPrint("[WARNING] You trusted all proxies, this is NOT safe. We recommend you to set a value.\n" +
"Please check https://pkg.go.dev/github.com/gin-gonic/gin#readme-don-t-trust-all-proxies for details.")
"Please check https://github.com/gin-gonic/gin/blob/master/docs/doc.md#dont-trust-all-proxies.")
}
err = http.ListenAndServeTLS(addr, certFile, keyFile, engine.Handler())