Skip to content

Instantly share code, notes, and snippets.

@PawelGIX
Last active May 18, 2022 16:28
Show Gist options
  • Save PawelGIX/7021dc0bb5212dc6581185890edf6cfa to your computer and use it in GitHub Desktop.
Save PawelGIX/7021dc0bb5212dc6581185890edf6cfa to your computer and use it in GitHub Desktop.
Fix directory permissions
#!/bin/bash
sudo chown www-data:www-data -R .
sudo find /var/www/html -type d -exec chmod u=rwx,go=rx {} \;
sudo find /var/www/html -type f -exec chmod u=rw,go=r {} \;
sudo find /var/www/html -type d -exec chmod 755 {} \;
sudo find /var/www/html -type f -exec chmod 644 {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment