Settings permissions on /var/www

3

1

I'm running ubuntu server and have apache installed as a web server. I'm letting my web developers upload files through sftp (ssh) to /var/www. I'm using www-data group to control access to /var/www folder. They are able to upload the files successfully but when they try to access that file in a browser, they get a 403 forbidden error.

How do I make sure that when the files are uploaded, the permissions are set right?

user36612

Posted 2010-05-09T16:04:54.413

Reputation: 133

Answers

4

From a terminal, type

sudo chmod -R 755 /var/www/

If that still doesn't work, try

sudo chown www-data /var/www

Failing this, post the output of ls -l /var so we can rule out file permissions.

Neil

Posted 2010-05-09T16:04:54.413

Reputation: 415