码迷,mamicode.com
首页 >  
搜索关键字:real-ip    ( 130个结果
解决Ecshop因为动态ip问题登录后台自动退出
解决Ecshop因为动态ip问题登录后台自动退出PHP 铁匠2年前 (2013-07-21)1130℃0评论修改lib_base.php文件real_ip()函数,添加以下代码即可解决:function real_ip(){ static $realip = NULL; if ($realip .....
分类:其他好文   时间:2015-06-25 11:45:00    阅读次数:114
nginx在varnish后端做负载均衡,后端tomca获取客户端真实IP
nginx在varnish后端做负载均衡,后端tomca获取客户端真实IP1.设置nginx配置文件首先要确定nginx做负载均衡,在安装时把http_realip_module安装上了。查看方法:/usr/local/nginx/sbin/nginx-V配置nginx.confvim/usr/local/nginx/conf/nginx.conf加入set_real_ip_from192.168.88..
分类:其他好文   时间:2015-06-11 00:36:45    阅读次数:207
利用nginx反向代理,后端Web如何获取真实客户ip
利用nginx反向代理,后端Web如何获取真实客户端ip一、nginx反向代理nginx,后端的nginx该如何配置才能获取到客户端的真实IP地址呢。1.首先需要在nginx代理服务器上的配置文件nginx.conf上的location中添加一行参数:proxy_set_headerX-Real-IP$remote_addr;重启nginx服务2.对后..
分类:Web程序   时间:2015-05-23 18:47:35    阅读次数:191
利用nginx反向代理,后端Web如何获取真实客户ip
利用nginx反向代理,后端Web如何获取真实客户端ip一、nginx反向代理nginx,后端的nginx该如何配置才能获取到客户端的真实IP地址呢。1.首先需要在nginx代理服务器上的配置文件nginx.conf上的location中添加一行参数:proxy_set_headerX-Real-IP$remote_addr;重启nginx服务2.对后..
分类:Web程序   时间:2015-05-22 19:29:37    阅读次数:170
java 获取客户端的真实ip
直接上代码了:     String ip = null;             if (request.getHeader("X-Real-IP") == null) {                 ip = request.getRemoteHost();             } else {                 ip = request.getHea...
分类:编程语言   时间:2015-05-21 12:42:50    阅读次数:105
快速获取游客和用户IP的具体实现方法
废话不多说,贴代码! Get my IP whatsmyip My Real IP is: document.write(""); Sohu API  My IP Info: var cip = returnCitySN.cip; var cid = returnCitySN.cid; var cname = returnCitySN.cnam...
分类:其他好文   时间:2015-05-16 12:00:51    阅读次数:159
Nginx一些知识整理
1、Nginx支持PHP,启用以行就可以location~\.php${roothtml;fastcgi_pass127.0.0.1:9000;fastcgi_indexindex.php;fastcgi_paramSCRIPT_FILENAME$document_root$fastcgi_script_name;includefastcgi_params;}2、Nginx登录认证及访问控制location/soft/{root/home;indexindex.php..
分类:其他好文   时间:2015-05-13 17:13:07    阅读次数:117
nginx 缓存配置
在nginx配置文件中:upstreamwebservers{ server192.168.1.6weight=1max_fails=2fail_timeout=2; } proxy_cache_path/data/nginx/cache/webserverlevels=1:2keys_zone=webserver:20mmax_size=1g; location/{ proxy_passhttp://webservers; proxy_set_headerX-Real-IP$remote_..
分类:其他好文   时间:2015-05-12 01:53:17    阅读次数:176
获取访问Ip常用方法
publicstaticStringgetIpAddr(HttpServletRequestrequest){ finalStringxRealip=request.getHeader("X-Real-IP"); if(StringUtils.isNotEmpty(xRealip)){ returnxRealip; } finalStringcdnIp=request.getHeader("Cdn-Src-Ip"); if(StringUtils.isNotEmpty(cdnIp)){ re..
分类:其他好文   时间:2015-04-14 14:47:16    阅读次数:187
后端tomcat日志获取真实的IP,不是nginx 服务器的IP
首先1、修改nginx的配置文件在nginx.conf中添加proxy_set_headerX-Forwarded-For$proxy_add_x_forwarded_for;proxy_set_headerX-Real-IP$remote_addr;2、修改tomcat的配置文件在server.xml中修改<ValveclassName="org.apache.catalina.valves.AccessLogValve"directory="log..
分类:其他好文   时间:2015-03-19 06:41:20    阅读次数:161
130条   上一页 1 ... 10 11 12 13 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!