Yes.
Actually at first, I had this in httpd.conf:
LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so
...
<Location /svn/sites>
DAV svn
SVNPath /data02/scm/svn/repos/sites
</Location>
But then, I was getting this error: (13)Permission denied: access to
/svn/sites denied
So I changed it to:
LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so
...
Alias /svn/sites /path/to/svn/dir
<Directory /svn/sites>
Options All
DAV svn
SVNPath /data02/scm/svn/repos/sites
</Directory>
and started getting the above problem.
On 12/1/09 6:58 PM, "Srilakshmanan, Lakshman"
<lakshman.srilakshmanan_at_police.vic.gov.au> wrote:
> Hi Boris,
>
> Did you LoadModule mod_dav_svn.so and provide a Location directive to /svn
>
> Thanks
> Lakshman
>
> From: Boris Goykhman [mailto:Boris_Goykhman_at_condenet.com]
> Sent: Wednesday, 2 December 2009 10:12 AM
> To: users_at_subversion.tigris.org
> Subject: Subversion page shows physical directories instead of svn repo
> directories
>
> Hi
>
> I am setting up an SVN repo (Collabnet distribution v. 1.5.1) behind Apache
> 2.2.8 (included with SVN distribution) on RedHat EL 5 and running into an
> issue where webpage for apache does not actually show what¹s stored in svn
> repo, but instead simply shows physical directories, like conf, db, hooks,
> etc.
>
> Everything works fine via svnserve. Also, it does seem like apache properly
> loads mod_dav_svn, because it is listed as a shared module if I run ÂŒhttp ÂM¹
> and conf syntax is OK. One thing to note is RedHat EL 5 is 64-bit, but both
> CollabNet 1.5.1 distribution and embedded Apache are both 32 bit.
>
> If anyone has any idea what the problem may be, please share your advice.
>
> Thanks
> Boris
>
>
> This e-mail, including attachments, is intended for the person(s) or company
> named and may contain confidential and/or legally privileged information.
> Unauthorized disclosure, copying or use of this information may be unlawful
> and is prohibited. If you are not the intended recipient, please delete this
> message and notify the sender.
------------------------------------------------------------------------------------------------
This e-mail, including attachments, is intended for the person(s)
or company named and may contain confidential and/or legally
privileged information. Unauthorized disclosure, copying or use of
this information may be unlawful and is prohibited. If you are not
the intended recipient, please delete this message and notify the
sender.
------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=2426153
Please start new threads on the <users_at_subversion.apache.org> mailing list.
To subscribe to the new list, send an empty e-mail to <users-subscribe_at_subversion.apache.org>.
Received on 2009-12-02 01:27:31 CET