I have set a users permission like this
groupadd mygroup
useradd -G mygroup ftp
chown -R :mygroup /var/www
chmod -R g+rw /var/www
Now how can I restrict access for this user (or is it group?) to allow the user to not be able to read anything out of the directory /var/www
?