X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/93c098cdc4f22b1fe69ecd88b3ac2d2b211780ff..8de21e204dc53bb28ad67207c308489f706ff00d:/cookbooks/git/recipes/web.rb diff --git a/cookbooks/git/recipes/web.rb b/cookbooks/git/recipes/web.rb index 65333eff0..bb99e482c 100644 --- a/cookbooks/git/recipes/web.rb +++ b/cookbooks/git/recipes/web.rb @@ -1,8 +1,8 @@ # -# Cookbook Name:: git +# Cookbook:: git # Recipe:: web # -# Copyright 2013, OpenStreetMap Foundation +# Copyright:: 2013, OpenStreetMap Foundation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -21,6 +21,7 @@ include_recipe "apache" package "gitweb" +apache_module "cgid" apache_module "rewrite" git_site = node[:git][:host] @@ -29,20 +30,27 @@ template "/etc/gitweb.conf" do source "gitweb.conf.erb" owner "root" group "root" - mode 0o644 + mode "644" end directory "/srv/#{git_site}" do owner "root" group "root" - mode 0o755 + mode "755" end template "/srv/#{git_site}/robots.txt" do source "robots.txt.erb" owner "root" group "root" - mode 0o644 + mode "644" +end + +template "/srv/#{git_site}/indextext.html" do + source "indextext.html.erb" + owner "root" + group "root" + mode "644" end ssl_certificate git_site do