Gentoo Archives: gentoo-user

From: James <jtp@×××××.com>
To: gentoo-user@l.g.o
Subject: [gentoo-user] webdav + foxmarks
Date: Wed, 24 Sep 2008 13:58:21
Message-Id: e107b4ff0809240658x354be268pb072040722e514f1@mail.gmail.com
1 All,
2
3 I am trying to set up Foxmarks to use my Apache webdav implementation
4 to store my Firefox bookmarks. Unfortunately when Foxmarks tries to
5 upload the appropriate files to the webserver it fails and I then see
6 the following message in my Apache error_log:
7
8 [Tue Sep 23 21:38:23 2008] [error] [client 10.2.6.2] client denied by
9 server configuration: /var/webdav
10
11 My Apache webdav configuration is shown below:
12
13
14 <IfModule mod_dav.c>
15
16 Alias /dav /var/webdav
17 DavMinTimeout 600
18 <Directory /dav>
19 Options None
20 Dav On
21
22 AllowOverride None
23 Order allow,deny
24 Allow from all
25
26 <Limit GET PUT POST DELETE PROPFIND PROPPATCH MKCOL
27 COPY MOVE LOCK UNLOCK>
28 AuthType Basic
29 AuthName "WebDav Restricted Repository"
30 AuthUserFile /var/webdav/.davpasswd
31 Require valid-user
32 </Limit>
33 </Directory>
34
35 </IfModule>
36
37
38 Thoughts?
39 -j

Replies

Subject Author
Re: [gentoo-user] webdav + foxmarks ert256 <ert256@×××××.com>