初始化一个yaf项目
进入安装包目录下
cd /usr/local/yaf-yaf-3.0.9/tools/cg
创建项目
sudo ./yaf_cg 项目名
执行之后,将会生成一个文件夹,在output文件夹中。
将项目拷出,然后配置nginx等等即可
server
{
listen 80;
#listen [::]:80;
server_name jiqing.yaf.com ;
index index.html index.htm index.php;
root /home/wwwroot/default/yaf/cheetah;
#error_page 404 /404.html;
include enable-php7.2.conf;
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 12h;
}
location ~ /.well-known {
allow all;
}
location ~ /\.
{
deny all;
}
access_log /home/wwwlogs/access.yaf.log;
}
修改hosts
sudo vim /etc/hosts