Krist,

Hmmm ... the server was originally only setup to serve SVN and was setup
with SSL.  I added Trac to it on a different VirtualHost without thinking
about the SSL issue and it still appears to be working.  But, yeah, if I had
thought through it I would have realized that you are not supposed to be
able to do this and can't with IIS at least.

For the SVN virtual host, the documentRoot parameter is set to "C:/Program
Files/VisualSVN Server".  Within the "/" location block, the SVNIndexXSLT
parameter is set to "/htdocs/svnindex.xsl", thus the full file system path
to the XSLT file is "C:/Program Files/VisualSVN Server/htdocs/svnindex.xsl"
which is correct and valid.  One suggestion I found online was to have a
separate location block for "/htdocs" where DAV was disabled and this is
what I have.  The full config is shown below.

        DocumentRoot            "C:/Program Files/VisualSVN Server"

        <Location "/" >
                DAV svn

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

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

                require valid-user
        </Location>
        
        <Location "/htdocs" >
                DAV off
        </Location>

Thanks for the help.
-- Jeff


-----Original Message-----
From: Krist van Besien [mailto:[EMAIL PROTECTED] 
Sent: Monday, October 06, 2008 9:09 AM
To: users@httpd.apache.org
Subject: Re: [EMAIL PROTECTED] Apache Conf. Issue - SVN

On Sun, Oct 5, 2008 at 1:02 AM, Jeff Chastain <[EMAIL PROTECTED]> wrote:

> NameVirtualHost *:443

This is surperflous, as you can't have SSL Named based Virtual Hosts.
You are not trying to do this, aren't you?

> With this config, I am currently having two issues.  I can browse the
domain
> just fine, but if I do not enter a repository name (i.e.
> https://svn.mydomain.com/ only), then I get a 403 error message.  Second,
if
> I try to browse a repository (https://svn.mydomain.com/Sandbox), then I
get
> an error which states "Error loading stylesheet: Parsing an XSLT
stylesheet
> failed."

Can you tell us what the value is of your DocumentRoot parameter, and
where you actually put the xsl file?

Krist

-- 
[EMAIL PROTECTED]
[EMAIL PROTECTED]
Bremgarten b. Bern, Switzerland
--
A: It reverses the normal flow of conversation.
Q: What's wrong with top-posting?
A: Top-posting.
Q: What's the biggest scourge on plain text email discussions?

---------------------------------------------------------------------
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