Skip to content

Instantly share code, notes, and snippets.

@SebKay
Last active December 11, 2019 08:18
Show Gist options
  • Save SebKay/08801745d5360e6c01a69063d56310c0 to your computer and use it in GitHub Desktop.
Save SebKay/08801745d5360e6c01a69063d56310c0 to your computer and use it in GitHub Desktop.
Change folder and/or file permissions on Ubuntu
find /var/www/html -type f -exec chmod 644 {} \;
find /var/www/html -type d -exec chmod 755 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment