Skip to content

Instantly share code, notes, and snippets.

@nehalvpatel
Created May 3, 2015 22:28
Show Gist options
  • Select an option

  • Save nehalvpatel/766406821e8f393c7743 to your computer and use it in GitHub Desktop.

Select an option

Save nehalvpatel/766406821e8f393c7743 to your computer and use it in GitHub Desktop.
Proper permissions for /var/www
sudo adduser <username> www-data
sudo chgrp -R www-data /var/www
sudo chmod -R g+rw /var/www
find /var/www -type d -print0 | sudo xargs -0 chmod g+s
@nehalvpatel
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment