In Linux (raspian wheezy), I am using apache as a webserver. It uses the user, www-data, in the group, www-data to access the www folder. The folder containing the HTML for the website is /var/www
I have set the owner of the folder to be www-data (both user and group).
I have the var/www folder set up as a SMB share so I can put my HTML folders in it from my main Windows PC. However, when I do, www-data is unable to access these files, as it doesn't have permissions, so the website can't display (gives a forbidden error).
If I use CHMOD to give www-data full permissions to each of the HTML files I just copied over, it works fine, but it's inconvenient to have to ssh into the box every time I change a file.
Is there a way to grant www-data permanent permission to access all files within the /var/www folder regardless of their individual permissions (like the inherit permissions option in Windows)?
I'm new to Linux. Be gentle.