http://devdocs.magento.com/を参照できます
重要なこと:
Magentoファイルシステムの所有者:すべてのファイルとディレクトリのフルコントロール(読み取り/書き込み/実行)が必要です。
Webサーバーのユーザーであってはなりません。別のユーザーである必要があります。
Webサーバーのユーザーは、次のファイルとディレクトリへの書き込みアクセス権を持っている必要があります。
さらに、Magentoユーザー(グループ内)がファイルへのアクセスをWebサーバーユーザーと共有できるように、WebサーバーのグループがMagentoファイルシステムを所有している必要があります。(これには、Magento Adminまたはその他のWebベースのユーティリティによって作成されたファイルが含まれます。)
次のように権限を設定することをお勧めします。
All directories have 770 permissions.
770 permissions give full control (that is, read/write/execute) to the owner and to the group and no permissions to anyone else.
All files have 660 permissions.
660 permissions mean the owner and the group can read and write but other users have no permissions.
推奨されるように設定する必要があります。
cd <your Magento install dir>
find . -type f -exec chmod 644 {} \; // 644 permission for files
find . -type d -exec chmod 755 {} \; // 755 permission for directory
find ./var -type d -exec chmod 777 {} \; // 777 permission for var folder
find ./pub/media -type d -exec chmod 777 {} \;
find ./pub/static -type d -exec chmod 777 {} \;
chmod 777 ./app/etc
chmod 644 ./app/etc/*.xml
chown -R :<web server group> .
chmod u+x bin/magento
これがあなたのお役に立てば幸いです。