Yii2项目在Linux上部署报错:The directory is not writable by the Web process ...
原因是执行目录没有写权限,需要确认以下两个问题
1 、网站目录是否属于 nginx的运行用户,假定nginx的运行目录是www,执行以下命令
chown -R www domain(web目录)
2、 nginx的运行用户对于报错目录是否有写权限
chmod +w www /www/domian/web/assets
原文:https://www.cnblogs.com/meetuj/p/12194268.html