Skip to content

Instantly share code, notes, and snippets.

@inluxc
Created September 18, 2019 12:21
Show Gist options
  • Save inluxc/1cb78f1681dbf66795dc6b4531b0a800 to your computer and use it in GitHub Desktop.
Save inluxc/1cb78f1681dbf66795dc6b4531b0a800 to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment