I've been trying to configure my Ubuntu box with SVN and ReposStyle,
but I'm having a hard time.
Here is the virtual host that points to my SVN repository:
<VirtualHost *:80>
ServerName
svn.epseelon.com
<Location />
DAV svn
SVNParentPath /home/svn
SVNListParentPath on
#SVNIndexXSLT "/repos-web/view/repos.xsl"
# how to authenticate a user
AuthType Basic
AuthName "Epseelon Subversion repository"
AuthUserFile /etc/apache2/dav_svn.passwd
Require valid-user
</Location>
ErrorLog /var/log/apache2/epseelon-svn-error.log
# Possible values include: debug, info, notice, warn, error,
crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/epseelon-svn-access.log combined
</VirtualHost>
I have unzipped ReposStyle's zip in /home/svn, such that repos.xsl is
on path /home/svn/repos-web/view/repos.xsl
I've chowned recursively /home/svn to www-data:www-data
And of course I've restarted Apache.
But now when I try to access
http://svn.epseelon.com/repos-web/view/repos.xsl,
I get the following error:
<D:error>
<C:error/>
<m:human-readable errcode="2">
Could not open the requested SVN filesystem
</m:human-readable>
</D:error>
So of course, when I uncomment SVNIndexXSLT directive, it's not
working.
Any idea what I'm doing wrong?
--
You received this message because you are subscribed to the Google Groups "ReposStyle" group.
To post to this group, send email to
repos...@googlegroups.com.
To unsubscribe from this group, send email to
reposstyle+...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/reposstyle?hl=en.