{
# Local access to "home" subdirectory of user directories.
# (Don't set group, since files are in user's primary group.  umask is
# 007 to generate permissions of 770/660.)
#
# NOTE: Users cannot write to their real home directory ~user as it 
#       is blocked by the default deny write
}
<Directory ~/home>
    AllowOverwrite on
    Umask 007
    <Limit WRITE>
        AllowAll
    </Limit>
</Directory>
