I've found a few guides for setting up a subversion repository and making it available via a subdomain (using a virtual host in Apache), but for some reason can't get things working. Here's what I've got so far:
- Created a subdomain "svn.mydomain.com"
Configured Apache with a new VirtualHost:
<VirtualHost *:80> ServerAdmin info@mydomain.com ServerName svn.mydomain.com <location> DAV svn SVNPath /Volumes/Storage/Resources/Subversion/svn_repo </location> </VirtualHost>
For now I don't have any authentication set up (to keep things simple until I get this working).
Am I missing something obvious? If not, any ideas/suggestions?