码迷,mamicode.com
首页 > 数据库 > 详细

nginx学习http_access_module模块

时间:2017-10-30 22:45:38      阅读:339      评论:0      收藏:0      [点我收藏+]

标签:access   geo   png   使用   html   xxxxx   结合   xxx   参数   

 

 

 location ~ ^/1.html {
        root   /opt/app/code;
        deny XXXXX;  #这个ip不能访问1.html
        allow all;   		  #其他的可以访问这个页面1.html
        index  index.html index.htm;
    }


location ~ ^/1.html {
	root   /opt/app/code;
	allow XXXXX;  #这个ip能访问1.html
	deny all;              #其他的不可以访问这个页面1.html
	index  index.html index.htm;
}

  局限性,如下图第一个所示,如果客户端通过一个代理,访问服务端,服务端获取的是代理的ip,而不是客户端的ip,

  1.其中一个解决方式使用http_x_forwarded_for来解决这个问题

技术分享

 

 2. 结合geo模块

3.  通过http自定义变量传参数

 

nginx学习http_access_module模块

标签:access   geo   png   使用   html   xxxxx   结合   xxx   参数   

原文地址:http://www.cnblogs.com/spectrelb/p/7757953.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!