Browsing to Subversion repository location indicated in Apache conf file

Posted by sonrael on Stack Overflow See other posts from Stack Overflow or by sonrael
Published on 2010-03-24T21:29:17Z Indexed on 2010/03/24 21:33 UTC
Read the original article Hit count: 152

Filed under:
|
|
|

I have Subversion 1.6.6 and Apache 2.2.14 installed and working.

I have made the following changes to the Apache httpd.conf file:

#Uncommented by me for Subversion installation

LoadModule dav_module modules/mod_dav.so

LoadModule dav_fs_module modules/mod_dav_fs.so

#Added by me for subversion installation

LoadModule dav_svn_module modules/mod_dav_svn.so

LoadModule authz_svn_module modules/mod_authz_svn.so

< Location /svn>

DAV svn

SVNPath C:\Users\RED\Repositories

< /Location>

...When I navigate to localhost Apache is working properly, but if I try to go to localhost/svn the browser just hangs waiting for a response from the server.

What is supposed to happen here? Does it have to do with the fact that I'm behind a wireless router on a dynamic IP address (although I can access localhost no problem so...)? As you can see I'm on windows (Vista)

© Stack Overflow or respective owner

Related posts about apache2

Related posts about subversion