vagrant + nginx + fuelPHP で Please check the permissions on /var/www/fuel/fuel/app/logs/ のエラー

前に apache でハマった。
とりあえず nginx と php-fpm の user, group を vagrant に変更してみる。

/etc/php-fpm.d/www.conf

user = vagrant
group = vagrant


/etc/nginx/nginx.conf

user  vagrant;

設定したら nginx, php-fpm を再起動して終わり。