The CSDL now supports personal DAV shares. Setting up a share is pretty easy.
- SSH to interactive.csdl.tamu.edu
- mkdir -p ~/public_html/dav
- chgrp :www-data public_html
- chmod g+rwXs public_html
- cd ~/public_html/dav
- In the editor of you choice create a file named .htaccess with the following information inside it
AuthType Basic
AuthName DAV
AuthGROUP_Enabled off
AuthPAM_Enabled on
AuthBasicAuthoritative off
require user [you_user_name]
SSLRequireSSL
<LimitExcept GET OPTIONS>
Order allow,deny
Allow from All
Require valid-user
</LimitExcept>