Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 13 Aug 2004 09:38:38 -0700
From:      Dan Finn <dhrider@gmail.com>
To:        freebsd-questions@freebsd.org
Subject:   Re: Getting mod_dav to work
Message-ID:  <89ceee704081309386dfcd37c@mail.gmail.com>
In-Reply-To: <86657nppgp.fsf@borg.borderworlds.dk>
References:  <359CDA42-ECCA-11D8-B4CE-000A958FBA16@ieee.org> <86657nppgp.fsf@borg.borderworlds.dk>

next in thread | previous in thread | raw e-mail | index | archive | help
On 13 Aug 2004 07:38:30 +0200, Christian Laursen <xi@borderworlds.dk> wrote:
> Alan Curtis <acurtis@ieee.org> writes:
> 
> > I would like to install the mod_dav port to allow me to make webDAV
> > connections from my OS X machine to my FreeBSD server.
> >
> > I am using
> >
> > FreeBSD 4.10-RELEASE
> > apache 1.3.13
> > mod_dav-1.0.3_1
> >
> > I installed everything and then followed the instructions from the
> > mod_dav website and put the following lines in my httpd.conf file.
> >
> > DAVLockDB /var/db/DAVLock
> > DAVMinTimeout 600
> > DAVDepthInfinity On
> >
> > <Location /usr/home/alan/www/dav >
> > DAV on
> > </Location>
> 
> You should probably use "Location /" or "Directory /usr/home/alan/www/dav"
> instead.
> 
> Location refers to a URI, not a path in the local filesystem.
> 
> --
> Christian Laursen
> _______________________________________________
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org"
> 

here's mine:

<Location />
  DAV On
  AuthType Basic
  AuthName DAV
  AuthUserFile /usr/local/etc/apache/dav.passwd
  <LimitExcept GET HEAD OPTIONS>
    require user webadmin
  </LimitExcept>
</Location>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?89ceee704081309386dfcd37c>