nginx中对指定的IP不使用密码对区域外IP使用密码访问
2013-06-01 21:02:51 来源:WEB开发网核心提示: ## example admin siteserver {server_name $HOSTNAME.dashboard.example.com;listen 80;# http://serverfault.com/questions/242218/how-to-disable-http-basic-aut
## example admin site
server {
server_name $HOSTNAME.dashboard.example.com;
listen 80;
# http://serverfault.com/questions/242218/how-to-disable-http-basic-auth-in-nginx-for-a-specific-ip-range
satisfy any;
allow 210.22.143.202/32;
deny all;
auth_basic "example Restricted";
auth_basic_user_file htpasswd;
error_page 404 /404;
error_page 503 /503;
#charset koi8-r;
access_log logs/dashboard.access.log;
error_log logs/dashboard.error.log;
location / {
proxy_pass http://127.0.0.1:8001;
proxy_redirect default;
proxy_set_header X-Real-IP $remote_addr;
}
location /assets {
alias $DEPLOY_ROOT_DIR/DashboardServer/assets/;
}
}
- ››nginx中对指定的IP不使用密码对区域外IP使用密码访...
- ››Nginx反向代理以及配置优化
- ››Nginx 配置文件解析
- ››nginx 防垃圾流量的perl清洗脚本
- ››Nginx 日志分析 AWStats + JAWStats 安装配置
- ››iphone图片拉伸的几种方法
- ››iphone正则表达式的简单使用
- ››nginx正向代理的不足
- ››iPhone开发Unresolved Symbols CAKeyframeAnimati...
- ››IPhone开发-“此证书是由未知颁发机构签名”解决方...
- ››IPhone开发-整合私钥和证书,生成.p12文件
- ››iPhone应用开发-UIPickerView选取器详解
更多精彩
赞助商链接