Skip to content

Instantly share code, notes, and snippets.

@aristidesneto
Created December 19, 2017 22:15
Show Gist options
  • Select an option

  • Save aristidesneto/ac8346d4c8c9922ae6fdab408a2325cc to your computer and use it in GitHub Desktop.

Select an option

Save aristidesneto/ac8346d4c8c9922ae6fdab408a2325cc to your computer and use it in GitHub Desktop.
Alterar permissão de pastas e arquivos web
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