Created
November 28, 2011 14:35
-
-
Save thejhh/1400608 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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