- RedirectPermanent / https://<%= @name %>/
- </VirtualHost>
- <VirtualHost *:443>
- ServerName <%= @name %>
- <% @aliases.each do |alias_name| -%>
- ServerAlias <%= alias_name %>
- <% end -%>
-
- ServerAdmin webmaster@openstreetmap.org
-
- #
- # Enable SSL
- #
- SSLEngine on
-
- CustomLog /var/log/apache2/<%= @name %>-access.log combined
- ErrorLog /var/log/apache2/<%= @name %>-error.log
+ RedirectPermanent / https://<%= @name %>/
+</VirtualHost>
+
+<VirtualHost *:443>
+ ServerName <%= @name %>
+<% @aliases.each do |alias_name| -%>
+ ServerAlias <%= alias_name %>
+<% end -%>
+
+ ServerAdmin webmaster@openstreetmap.org
+
+ #
+ # Enable SSL
+ #
+ SSLEngine on
+<% if @ssl_certificate -%>
+ SSLCertificateFile /etc/ssl/certs/<%= @ssl_certificate %>.pem
+ SSLCertificateKeyFile /etc/ssl/private/<%= @ssl_certificate %>.key
+<% end -%>
+<% if @ssl_certificate -%>
+ SSLCertificateChainFile /etc/ssl/certs/<%= @ssl_certificate_chain %>.pem
+<% end -%>
+
+ CustomLog /var/log/apache2/<%= @name %>-access.log combined
+ ErrorLog /var/log/apache2/<%= @name %>-error.log