yaf nginx 设置

#test1
server {
listen 80;
listen [::]:80;
root /vagrant_data/aaa/public;
index index.html index.htm index.php;
server_name www.test1.com;

location /{
index index.html index.htm index.php;
if (-e $request_filename) {
break;
}
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php/$1 last;
break;
}
}

location ~ .+.php($|/) {
fastcgi_split_path_info ^(.+.php)(.*)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
include fastcgi_params;
}

}

原文地址:https://www.cnblogs.com/tttlan/p/6476303.html