私は初心者で、AWS で Yii チュートリアルを実行しています。これまでのところ、mysql接続を含め、すべてを稼働させることができました。しかし今は、Gii コード生成ツールを使用して、いくつかのモデル クラスを作成しています。そうすることで、次のエラーが発生します。
generating models/User.php
Unable to write the file '/var/www/html/blog/protected/models/User.php'.
done!
ドキュメントにも次のように記載されています。
Info: Because the code generator needs to save the generated code into files, it is
required that the Web process have the permission to create and modify the corresponding
files. For simplicity, we may give the Web process the write permission to the whole
/www/blog directory. Note that this is only needed on development machines when using Gii.
これは私には理にかなっており、ユーザーとグループに適用される Linux アクセス許可の基本的なロジックは理解していますが、プロセスには適用されません。Gii プロセスに webroot (私の場合:/var/www/html/blog/) ディレクトリへの書き込み権限を与える方法についての入門書を教えてもらえますか?