Skip to content

Instantly share code, notes, and snippets.

@thejhh
Created November 28, 2011 14:35
Show Gist options
  • Select an option

  • Save thejhh/1400608 to your computer and use it in GitHub Desktop.

Select an option

Save thejhh/1400608 to your computer and use it in GitHub Desktop.
<VirtualHost 188.64.1.74:443>
ServerName svn.sendanor.fi
SSLEngine on
SSLCertificateFile ssl/cert.pem
SSLCertificateKeyFile ssl/key.pem
ServerAdmin webmaster@sendanor.fi
# SVN
<Location /svn>
DAV svn
SVNParentPath /home/svn
AuthzSVNAccessFile /home/svn/fizban.authz
# try anonymous access first, resort to real
# authentication if necessary.
Satisfy Any
Require valid-user
AuthType Basic
AuthName "Subversion Repository"
AuthUserFile /home/svn/fizban.passwd
</Location>
DocumentRoot /var/www/svn.sendanor.fi/www
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment