Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save atelierbram/89dc6046debf458cb73449373ccb8736 to your computer and use it in GitHub Desktop.

Select an option

Save atelierbram/89dc6046debf458cb73449373ccb8736 to your computer and use it in GitHub Desktop.
Fix Apache ownership and permissions
sudo chown -R www-data:www-data .
sudo find . -type d -exec chmod 755 {} \;
sudo find . -type f -exec chmod 644 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment