mardi 28 septembre 2010

Créer un partage Webdav sur Ubuntu 10.4

Installer WebSAV sur apache2


Ajouter les lignes suivantes dans le fichier /etc/apache2/sites-available/default

<Directory "/var/www/webdav/">Options Indexes FollowSymLinks MultiViewsAllowOverride NoneOrder allow,denyallow from all</Directory>Alias /webdav /var/www/webdav/<Location /webdav>DAV OnAuthType BasicAuthName "webdav"AuthUserFile /var/www/.passwd.davRequire valid-userDavMinTimeout 600<LimitExcept GET PUT HEAD OPTIONS POST>Require valid-user</LimitExcept></Location>


Gérer les droits


Puis nous allons créer les mots de passe.
htpasswd -c /var/www/.passwd.dav myuserchown root:www-data /var/www/.passwd.davchmod 640 /var/www/.passwd.davchmod -R 0777 /var/www/webdavchown www-data:www-data /var/www/webdav/etc/init.d/apache2 restart