Jump to content

[SOLVED] How to co-own the /var/www directory so I can use Filezilla in SSH mode?


sKunKbad

Recommended Posts

I have figured out that if I CHOWN the /var/www directory that I can use Filezilla in SSH mode to move files back and forth easily from my home computer. Another person suggested that if Apache/PHP needs to write to a file in the www directory that it would no longer be able to. So, I'm guessing that CHOWNing the directory was the wrong thing to do, and wondering if I should join the www-data group, or what is the proper way of handling this? Was the person that suggested that Apache/PHP would no longer be able to write to the www directory correct?

Link to comment
Share on other sites

what is the proper way of handling this? Was the person that suggested that Apache/PHP would no longer be able to write to the www directory correct?

 

Yes. However, joining the www-data (the apache user group) group isn't a good idea, nor is having /var/www owned by that group.

 

What I normally do is create a new group (www), I then chown /var/www to root:www and join the www group. I would then chmod /var/www 775. This gives you permissions to write to the directory.

 

From there, I simply make any directories that need to be written to by php (file uploads, fwrite etc etc) owned by www-data. The least directories owned by this group the better.

Link to comment
Share on other sites

...www-data. The least directories owned by this group the better.

 

Is this because if a malicious user somehow got control of Apache they could overwrite anything in a directory that was owned by www-data?

Indeed.

Link to comment
Share on other sites

Try using the chmod +t option so that any files created by anyone in /var/www are automatically created 775.

 

The +t option wont automatically make files 775. Permissions given to files are set by your umask setting.

 

Another option when working with groups of people is to set the group id bit so that all files / directories within will be owned by the same group. eg;

 

sudo chown root:www /var/www
sudo chmod 2775 /var/www

 

Now, if I (as user thorpe belonging to the group www) create any file / directory within /var/www it will be owned by thorpe:www, and providing my umask is set to 0002 (default on most systems) files will be 664 while dirs will be 2775 (same as /var/www).

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.