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!
@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
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.