To allow access to /var/www on the linux box, you can create a user and make him the owner of /var/www
For example if you created 'user1' as the new user, this is how you can make him the owner -
Code:
chown -Rv user1 /var/www
Then change the permissions to the directory
Code:
chmod -Rv 700 /var/www
This will give full permission only to the owner, while no permission to others.
VJN
Team SafeSquid