phpstudy vhost 配置

server {
listen 80 ;
server_name user.fudaobank.com;
index index.html index.htm index.php;
root /alidata/www/abc;
location ~ .*\.(php|php5)?$
{
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;
}
access_log /alidata/log/nginx/access/abc.log;
}

 

posted @ 2016-05-14 22:25  Ali.Blacken  阅读(1838)  评论(0编辑  收藏  举报