Report this

What is the reason for this report?

the `www` in changing permissions command

Posted on December 26, 2013

I’m following this tutorial to setup wordpress with nginx https://www.digitalocean.com/community/articles/how-to-install-wordpress-with-nginx-on-ubuntu-12-04. At one point it asks us to create and cd into a directory /var/www/

cd /var/www/

It subsequently tells us to change the permissions for that directory with this command

sudo chown www-data:www-data * -R sudo usermod -a -G www-data username

My question is this, is there a relationship between the www of the /var/www/ and the www of the www-data:www-data. For example, if I didn’t create the directory /var/www/ but instead created /var/foo/ directory, would the command for changing permissions look like this

sudo chown foo-data:foo-data * -R

or will the command always be

sudo chown www-data:www-data * -R

regardless of what I name the directory?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

<b>“My question is this, is there a relationship between the www of the /var/www/ and the www of the www-data:www-data.”</b> <br> <br>None; <code>www-data</code> is the system name for the web server (whether Nginx or Apache). A popular root directory for a web server – other than <code>/var/www</code> – is <code>/srv/www</code>.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.