On Mon, Sep 12, 2011 at 9:26 PM, Graham Dumpleton
<[email protected]> wrote:
> What do you get if you put '/dav/' into to the browser directly for that host?
>
> What do you have in Apache configuration which would intercept '/dav/'
> and how it it configured?
Thank you for your reply Graham. I think I found part of my issue. I
have fixed the redirect problem, my actual code was doing an internal
redirect to /dav, which caused a 301 redirect to /dav/.
With that resolved, the internal redirect is working properly,
however, WebDAV is not handling the request.
I have webdav set up as:
Alias /dav /var/www/dav
<Directory /var/www/dav>
Dav On
</Directory>
I can use the /dav/ directory as a dav share, mount it, browse it etc.
However, connecting to / fails with a 403 (Indexes not allowed). It
should reply with a DAV reply, but seems like apache is treating the
request like a GET (not OPTIONS). Either that or mod_dav is not
handling the request even with the Directory section defined.
I notice in the mod_wsgi.c, the subrequest method is overwritten to
GET, would this have anything to do with the problem?
Or is the problem rather that the subrequest is not mapping to the
correct directory and thus not enabling mod_dav for the / location?
Or something else entirely?
Thanks.
--
You received this message because you are subscribed to the Google Groups
"modwsgi" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/modwsgi?hl=en.