esc服务器,创建了2个网站,域名进行绑定后,无法打开对应的网站
Reesc服务器,创建了2个网站,域名进行绑定后,无法打开对应的网站
正常配置啊!我看了下,html文件能访问,php文件打不开,奇怪了
-------------------------
Reesc服务器,创建了2个网站,域名进行绑定后,无法打开对应的网站
server {
listen 80;
server_name weixiaoqu.wang;
index index.html index.htm index.php;
root /alidata/www/weixiaoqu;
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/weixiaoqu.conf;
access_log /alidata/log/nginx/access/weixiaoqu.log;
}
赞0
踩0