主に Apache の WebDAV 拡張に関する各種ソフトウェア、パッチ、ドキュメントの公開と継続的なメンテナンスを行います。cadaver や davfs 等、Apache Software License 以外のライセンスを持つものが含まれる事に注意して下さい。
mod_dav_fs_diskquota is a derived work of mod_dav_fs in Apache
2.0.55. When it stores files/directories, it will change their
owner for OS user account that has same name of the web-authorized
user, so OS disk quota works fine for WebDAV contents.
mod_dav_fs_diskquota makes new files/directories:
owner: OS user account (= same name of Web authorized account)
group: Apache group account
mode: user=readable/writable, group=readable/writable
The owner of them is an user account, so amount of them is limited
by OS disk quota. Apache can treat them with group permission. To
change files/directories owner, we need to:
1.Give CAP_NET_BIND_SERVICE and CAP_CHOWN capability to Apache.
2.Run Apache as non-root account from beginning. (otherwise, Apache
process changes its UID as apache user and it drops above
capabilities.)
Initial release. (Apache httpd-2.0.55 based)