Created
December 19, 2017 22:15
-
-
Save aristidesneto/ac8346d4c8c9922ae6fdab408a2325cc to your computer and use it in GitHub Desktop.
Alterar permissão de pastas e arquivos web
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| find /var/www/yourdomain.com/html/ -type d -exec chmod 755 {} \; | |
| find /var/www/yourdomain.com/html/ -type f -exec chmod 644 {} \; | |
| sudo chown -hR www-data:www-data /var/www/yourdomain.com/html/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment