qns_fengyusong 发表于 2016-12-26 10:42:17

yaf框架 nginx 配置

  记在这里,以后配置起来更方便..

server {
listen 80;
server_namewww.yaf.com;
indexindex.php index.html index.htm;
root   /data0/htdocs/www.yaf.com;
location ~ .*\.(php|php5)?$
{
#fastcgi_passunix:/tmp/php-cgi.sock;
fastcgi_pass127.0.0.1:9000;
fastcgi_index index.php;
include fcgi.conf;
}
if (!-e $request_filename) {
rewrite ^/(.*\.(js|ico|gif|jpg|png|css|bmp|html|xls)$) /$1 last;
rewrite ^/(.*) /index.php?$1 last;
}
}
页: [1]
查看完整版本: yaf框架 nginx 配置