phpstudy vhost 配置

时间:2016-05-14 23:05:30   收藏:0   阅读:2125

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;
}

 

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!