阿里云主机,现在运行了一个phpwind系统的网站。
我在www目录下新建了一个目录:abc,想作为新的站点,绑定域名:cdef.com
在:/alidata/server/nginx/conf/vhosts目录中新建:abcdef.conf文件,文件代码如下:
server {
listen 80;
server_name www.cdef.com cdef.com ;
index index.html index.htm index.php;
root /alidata/www/abc;
location ~ .*\.(php|php5)?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 1h;
}
#伪静态规则
include /alidata/server/nginx/conf/rewrite/default.conf;
log_format abc '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /alidata/log/nginx/access/default.log abc;
}
以上是根据官方帮助中心的提示做的,但是在访问网站的时候,网站打不开,网站目录中有index.html文件。
请各位高手帮我看看。
-------------------------
-------------------------
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。