Skip to content

Instantly share code, notes, and snippets.

@artlung
Created August 30, 2020 20:00
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Set Permissions to 600 for all WordPress wp-config.php files
# where /usr/home/username/public_html contains all your wordpress installs
# to run for the current directory and lower:
# find . -name wp-config.php | xargs chmod 600
find /usr/home/username/public_html -name wp-config.php | xargs chmod 600
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment