I am trying to install the web interface for my repository, I am having problems
I would like to be able to browse my repo from my browser how Would I be about to do that, is there a downloadable package? I am been trying to configure it but there is the webpage side of it is part of what I don't understand, how do I come out with it?, how do I install WebDAV so that I can connet trough the url? I already have my repository and just need the web interface.
I have been to sites where they explain how to intall it, and this includes part of the file shown below, but I need a more figurative explanation
Can anyone help ? please
it comes up with
Forbidden
You don't have permission to access /svn on this server.
Apache/2.2.9 (Fedora) Server at localhost Port 80
-
- Forbidden
-
- You don't have permission to access /svn on this server.
- Apache/2.2.9 (Fedora) Server at localhost Port 80
-
This is how my subsversion.conf file looks like:
LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so
#
# Example configuration to enable HTTP access for a directory
# containing Subversion repositories, "/var/www/svn". Each repository
# must be readable and writable by the 'apache' user. Note that if
# SELinux is enabled, the repositories must be labelled with a context
# which httpd can write to; this will happen by default for
# directories created in /var/www. Use "restorecon -R /var/www/svn"
# to label the repositories if upgrading from a previous release.
#
#
# To create a new repository "http://localhost/repos/stuff" using
# this configuration, run as root:
#
# # cd /var/www/svn
# # svnadmin create stuff
# # chown -R apache.apache stuff
#
<Location /svn>
DAV svn
SVNParentPath /home/cjxxi/svn/
#
# # Limit write permission to list of valid users.
# <LimitExcept GET PROPFIND OPTIONS REPORT>
# # Require SSL connection for password protection.
# # SSLRequireSSL
#
#AuthType Basic
#AuthName "SVN SERVER"
#AuthUserFile /home/cjxxi/svn/htpasswd
#Require valid-user
# </LimitExcept>
</Location>
-
- LoadModule dav_svn_module modules/mod_dav_svn.so
- LoadModule authz_svn_module modules/mod_authz_svn.so
-
- #
- # Example configuration to enable HTTP access for a directory
- # containing Subversion repositories, "/var/www/svn". Each repository
- # must be readable and writable by the 'apache' user. Note that if
- # SELinux is enabled, the repositories must be labelled with a context
- # which httpd can write to; this will happen by default for
- # directories created in /var/www. Use "restorecon -R /var/www/svn"
- # to label the repositories if upgrading from a previous release.
- #
-
- #
- # To create a new repository "http://localhost/repos/stuff" using
- # this configuration, run as root:
- #
- # # cd /var/www/svn
- # # svnadmin create stuff
- # # chown -R apache.apache stuff
- #
-
- <Location /svn>
- DAV svn
- SVNParentPath /home/cjxxi/svn/
- #
- # # Limit write permission to list of valid users.
- # <LimitExcept GET PROPFIND OPTIONS REPORT>
- # # Require SSL connection for password protection.
- # # SSLRequireSSL
- #
- #AuthType Basic
- #AuthName "SVN SERVER"
- #AuthUserFile /home/cjxxi/svn/htpasswd
- #Require valid-user
-
- # </LimitExcept>
- </Location>