Make my dir /home/user/webdav/callendar recursively writable by apache user
Before:
cd /home/user/webdav/
getfacl .
# file: .
# owner: user
# group: user
user::rwx
group::rwx
other::r-x
Settings:
setfacl -R -m u:apache:rwx .
getfacl .
# file: .
# owner: user
# group: user
user::rwx
user:apache:rwx
group::rwx
mask::rwx
other::r-x