Report this

What is the reason for this report?

sftp web server permissions

Posted on July 21, 2015

I’m running Ubuntu 14.04 (LEMP) I need proper access for both “www-data” and “example” user (myself).

I used this command

chown -R example:www-data /var/www/html

Now I can upload via sftp but my homepage doesn’t work properly because of a permission error for some javascript file

As a temporary solution I just switch back and forth between these 2 commands to upload via sftp: chown -R example /var/www/html and then to have my homepage running properly again: chown -R www-data /var/www/html

How can I get this to work without changing permissions all the time?



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.

@Marcedwin I solved this a while ago

The solution is to add your user “demo” to the group www-data (since www-data is a group) below replace demo with your username

sudo usermod -a -G www-data demo

set permissions for user group www-data

sudo chgrp -R www-data /var/www/html

followed by

sudo chmod -R g+w /var/www/html

Works fine for me

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.