Skip to content

Instantly share code, notes, and snippets.

@lgraubner
Created October 1, 2015 10:51
Show Gist options
  • Save lgraubner/109cabccc9a7f006057f to your computer and use it in GitHub Desktop.
Save lgraubner/109cabccc9a7f006057f to your computer and use it in GitHub Desktop.
Sets correct file and folder permissions for webservers.
find . -type d -print0 | xargs -0 chmod 755 && find . -type f -print0 | xargs -0 chmod 644
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment