+<VirtualHost *:443>
+ ServerName <%= @name %>
+ ServerAdmin webmaster@openstreetmap.org
+
+ Protocols http/1.1
+
+ SSLEngine on
+ SSLCertificateFile /etc/ssl/certs/<%= @name %>.pem
+ SSLCertificateKeyFile /etc/ssl/private/<%= @name %>.key
+
+ CustomLog /var/log/apache2/<%= @name %>-access.log combined
+ CustomLog /var/log/apache2/<%= @name %>-svn-access.log "%h %t %u %{SVN-ACTION}e" env=SVN-ACTION
+ ErrorLog /var/log/apache2/<%= @name %>-error.log
+
+ <Location />
+ DAV svn
+ SVNPath <%= @directory %>
+ SVNIndexXSLT /svnindex.xsl
+
+ LimitXMLRequestBody 0
+ LimitRequestBody 0
+
+ <Limit GET PROPFIND OPTIONS REPORT>
+ Require all granted
+ </Limit>