I've got a couple local repositories that I can successfully access using Apache WebDav.
This apache is also a production webserver and I've got directory listings disabled globally.
Here's the Location config:
<Location /svn>
DAV svn
SVNParentPath /var/local/svn
SSLRequireSSL
AuthType Basic
AuthName "Dining Deals Network SVN"
AuthUserFile /var/local/users/svn.passwd
Require valid-user
</Location>
We have 2 repo's in /var/local/svn. Right now, you have to navigate to them directly. If you just go to https://www.ourdomain.com/svn you get a
(403) Forbidden
You don't have permission to access /svn/ on this server.
I've tried adding a (and i've also tried a just for kicks) with an Options Indexes but it didn't accomplish anything.
Any help would be appreciated.