Tony,

The <LocationMatch> does not appear to work any different and yes, I do have
a DocumentRoot defined.  The entire VirtualHost block is listed below.

However, after adding the <LocationMatch> the error message in the log file
has changed.  Now, I am getting the following error which still makes it
look like it is going to the <Location "/" > block as that is where the path
F:\Repositories is defined.

Thanks for the help.
-- Jeff

--------------------------------------------------

[Tue Oct 07 10:03:26 2008] [error] [client 192.168.1.51] (20014)Internal
error: Can't open file 'F:\\Repositories\\svnindex.xsl\\format': The system
cannot find the path specified.  , referer:
https://svn.mydomain.com/Sandbox/
[Tue Oct 07 10:03:26 2008] [error] [client 192.168.1.51] Could not fetch
resource information.  [500, #0], referer: https://svn.mydomain.com/Sandbox/
[Tue Oct 07 10:03:26 2008] [error] [client 192.168.1.51] Could not open the
requested SVN filesystem  [500, #720003], referer:
https://svn.mydomain.com/Sandbox/
[Tue Oct 07 10:03:26 2008] [error] [client 192.168.1.51] Could not open the
requested SVN filesystem  [500, #720003], referer:
https://svn.mydomain.com/Sandbox/

--------------------------------------------------

<VirtualHost *:443 >

        ServerName              svn.mydomain.com
        ServerAdmin             [EMAIL PROTECTED]
        ErrorLog                F:/Repositories/error.log

        SSLEngine               on
        SSLCertificateFile      conf/server.pem
        SSLCertificateKeyFile   conf/server.pem

        DocumentRoot            "C:/Program Files/VisualSVN Server/htdocs"

        <LocationMatch "/htdocs" >
                DAV off
        </LocationMatch>

        <Location "/" >
                DAV svn

                SVNParentPath           "F:\Repositories"
                SVNListParentPath       on
                SVNIndexXSLT            "/svnindex.xsl"
                SVNPathAuthz            on

                AuthName                "Subversion Repositories"
                AuthType                Basic
                AuthBasicProvider       file
                AuthUserFile            "F:/Repositories/htpasswd"
                AuthzSVNAccessFile      "F:/Repositories/authz"

                require valid-user
        </Location>

</VirtualHost>


-----Original Message-----
From: Tony Stevenson [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, October 07, 2008 9:50 AM
To: users@httpd.apache.org
Subject: Re: [EMAIL PROTECTED] Apache Conf. Issue - SVN

Jeff,

Silly question, but you do have a DocumentRoot defined for this vhost,
right? Otherwise where will httpd serve $docroot/htdocs/svnindex.xsl  from?


Tony


Tony Stevenson wrote:
> Jeff,
> 
> Try using a <LocationMatch> stanza instead then.
> Something like this perhaps
> 
> <LocationMatch "/htdocs">
>       Dav Off
> </LocationMatch>
> 
> 
> Cheers,
> Tony
> 

> 


-- 


-----------------------------------------
Tony Stevenson
[EMAIL PROTECTED]  //  [EMAIL PROTECTED]
http://www.pc-tony.com/

1024D/51047D66 ECAF DC55 C608 5E82 0B5E  3359 C9C7 924E 5104 7D66
-----------------------------------------

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to