]> git.openstreetmap.org Git - chef.git/commitdiff
Add https support to svn.openstreetmap.org
authorTom Hughes <tom@compton.nu>
Thu, 16 Apr 2015 19:10:11 +0000 (20:10 +0100)
committerTom Hughes <tom@compton.nu>
Thu, 16 Apr 2015 19:11:07 +0000 (20:11 +0100)
cookbooks/subversion/recipes/default.rb
cookbooks/subversion/templates/default/apache.erb

index 3f024259905bd052adeee61f199acf44553dd2c6..10de0520de67e65a723a05427656c5327100b67a 100644 (file)
@@ -17,7 +17,7 @@
 # limitations under the License.
 #
 
-include_recipe "apache"
+include_recipe "apache::ssl"
 
 package "subversion"
 
index 507379fd56d583bf37a7ab8fd4718c5d81611c62..ae5c4031737577247ab2b8c3b21118a4d7011e07 100644 (file)
@@ -1,30 +1,36 @@
 # DO NOT EDIT - This file is being maintained by Chef
+<% [80, 443].each do |port| -%>
 
-<VirtualHost *:80>
+<VirtualHost *:<%= port %>>
         ServerName <%= @name %>
         ServerAdmin webmaster@openstreetmap.org
+<% if port == 443 -%>
+
+        SSLEngine on
+<% end -%>
 
         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 %>
+        <Location />
+                DAV svn
+                SVNPath <%= @directory %>
 
-               AuthType Basic
-               AuthName "<%= @realm %>"
-               AuthUserFile <%= @password_file %>
+                AuthType Basic
+                AuthName "<%= @realm %>"
+                AuthUserFile <%= @password_file %>
 
-               LimitXMLRequestBody 0
-               LimitRequestBody 0
+                LimitXMLRequestBody 0
+                LimitRequestBody 0
 
-               <Limit GET PROPFIND OPTIONS REPORT>
-                       Require all granted
-               </Limit>
+                <Limit GET PROPFIND OPTIONS REPORT>
+                        Require all granted
+                </Limit>
 
-               <LimitExcept GET PROPFIND OPTIONS REPORT>
-                       Require valid-user
-               </LimitExcept>
-       </Location>
+                <LimitExcept GET PROPFIND OPTIONS REPORT>
+                        Require valid-user
+                </LimitExcept>
+        </Location>
 </VirtualHost>
+<% end -%>