Hi All, I have followed the SVN manual for installing the SVN Server and I have successful installed the svn server. Now when I have to enable the browsing of the files, I have to write these lines of code in the httpd.conf file: Code: <VirtualHost 000.000.000.000:80> ServerName svn.mydomain.com <Location /> DAV svn SVNPath /home/svn_repositories/myrepos # our access control policy AuthzSVNAccessFile /etc/subversion/my_policy Require valid-user AuthType Basic AuthName "My Projects" AuthUserFile /etc/subversion/passwd </Location> </VirtualHost> If I write the above mentioned rows the sharedip page is not executed. How can I write that commands and settings in the /etc/httpd/conf/vhosts/Vhosts_ispconfig.conf ? Do I have to create first of all the co-domain? and then? thanks
Try to add the following part in the apache directives field of a website: <Location /> DAV svn SVNPath /home/svn_repositories/myrepos # our access control policy AuthzSVNAccessFile /etc/subversion/my_policy Require valid-user AuthType Basic AuthName "My Projects" AuthUserFile /etc/subversion/passwd </Location>
Hi Till, the directive : ServerName svn.mydomain.com is not mandatory? Have I create a co-domain for it? thanks