内容简介:在生产环境中我主要使用了beego和gin,下面只介绍这两个框架的情况。
location /api { proxy_set_header Host $http_host; proxy_set_header X-Forward-For $remote_addr; proxy_set_header X-real-ip $remote_addr; add_header Access-Control-Allow-Origin *; add_header Access-Control-Allow-Methods 'GET, POST, OPTIONS'; add_header Access-Control-Allow-Headers 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization'; proxy_pass http://127.0.0.1:9900; }
ip := c.ClientIP() // c为*gin.Context
func getClientIP(ctx *context.Context) string { ip := ctx.Request.Header.Get("X-Forwarded-For") if strings.Contains(ip, "127.0.0.1") || ip == "" { ip = ctx.Request.Header.Get("X-real-ip") } if ip == "" { return "127.0.0.1" } return ip } // caller ip := getClientIP(c.Ctx) // Ctx为beego包中的*context.Context
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。