【代理】nginx 反向代理iis支持 ASP脚本设置
nginx设置支持ASP
大家一起分享:
#asp(aspx)支持,将客户端的请求转交给IIS
location ~* \.(asp|aspx|asa)$ {
root D:/wwroot;
index index.asp index.aspx;
proxy_
nginx设置支持ASP
大家一起分享:
#asp(aspx)支持,将客户端的请求转交给IIS
location ~* \.(asp|aspx|asa)$ {
root D:/wwroot;
index index.asp index.aspx;
proxy_
nginx 403 forbidden问题处理,403错误主要有以下2条原因:
1、对于PHP而言,如果nginx用户没有web目录的权限,则会导致该错误,解决办法:chown -R nginx_user:nginx_user /htdocs
2、未设置index的类型,需要在nginx.conf中的index后面加上要访问的文件类型,例如:index index.php index.html index.htm;
重新启动nginx,问题得以解决。
./configure: error: the HTTP gzip module requires the zlib library. You can either disable the module by using --w
Nginx 在工作中已经有好几个环境在使用了,每次都是重新去网上找博客,各种编译配置,今天自己也整理一份安装文档和 nginx.conf 配置选项的说明,留作以后参考。
1. 安装nginx
1.1 选择稳定版本
我们编译安装nginx来定制自己的模块,机器CentOS 6.2 x86_64。首先安装缺少的依赖包:
# yum -y install
首先一、得在你的域名管理里面定义 jiaozn.com和www.jiaozn.com指向你的主机ip地址,我们可以使用nslookup命令测试:
直接输入 nslookup jiaozn.com和nslookup www.jiaozn.com 都有指向ip的A记录即可。
第二、我们才能在nginx里面配置rewrite规则。
打开 nginx.conf文件找到你的server配置段:
server
{
listen 8
当别人把垃圾域名转向至你的服务器时, 如果不采取措施,那么后果不堪设想。
国内机房一般都要求网站主关闭空主机头,防止未备案的域名指向过来造成麻烦。
Nginx默认的虚拟主机允许用户经过IP访问,或者经过未设置的域名访问(比如有人把他本人的域名指向了你的ip)你的VPS或服务器。