2008年11月14日金曜日

WebDAVの設定.

lftpをインストールして,foxmarksの共有をftpで行ってたけど,遅い,重い,終わらないのでWebDAVに変更する.

sudo vi /etc/apache2/httpd.conf

#allowoverride all
order deny,allow
deny from all
allow from 192.168.1
AuthType Basic
AuthName "foxmarks"
AuthUserFile "/etc/apache2/conf.d/.htpasswd"
Require user username


を追加する.

sudo htpasswd -c /etc/apache2/conf.d/.htpasswd username

sudo chown username:username /var/www/foxmarks

sudo /etc/init.d/apache2 restart

これでおk

0 件のコメント:

コメントを投稿