]> git.openstreetmap.org Git - chef.git/commitdiff
Fix indentation
authorTom Hughes <tom@compton.nu>
Sun, 23 Mar 2014 18:54:24 +0000 (18:54 +0000)
committerTom Hughes <tom@compton.nu>
Sun, 23 Mar 2014 18:54:24 +0000 (18:54 +0000)
cookbooks/wordpress/templates/default/apache.erb

index 90adc23a29c6ae908af45fdb3a9b36d3ed3aed28..997b44322cb6a3b9874dd8c8576dbad957b1eba0 100644 (file)
   CustomLog /var/log/apache2/<%= @name %>-access.log combined
   ErrorLog /var/log/apache2/<%= @name %>-error.log
 
-
 <% if @ssl_enabled -%>
-    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
+
+  CustomLog /var/log/apache2/<%= @name %>-access.log combined
+  ErrorLog /var/log/apache2/<%= @name %>-error.log
 <% end -%>
 
   DocumentRoot <%= @directory %>