]> git.openstreetmap.org Git - chef.git/blob - cookbooks/git/templates/default/apache.erb
Add tests for git cookbook
[chef.git] / cookbooks / git / templates / default / apache.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 <VirtualHost *:80>
4         ServerName <%= @name %>
5 <% @aliases.each do |alias_name| -%>
6         ServerAlias <%= alias_name %>
7 <% end -%>
8         ServerAdmin webmaster@openstreetmap.org
9
10         CustomLog /var/log/apache2/<%= @name %>-access.log combined
11         ErrorLog /var/log/apache2/<%= @name %>-error.log
12
13         RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
14         RedirectPermanent / https://<%= @name %>/
15 </VirtualHost>
16
17 <% unless @aliases.empty? -%>
18 <VirtualHost *:443>
19         ServerName <%= @aliases.first %>
20 <% @aliases.slice(1..-1).each do |alias_name| -%>
21         ServerAlias <%= alias_name %>
22 <% end -%>
23         ServerAdmin webmaster@openstreetmap.org
24
25         SSLEngine on
26         SSLCertificateFile /etc/ssl/certs/<%= @name %>.pem
27         SSLCertificateKeyFile /etc/ssl/private/<%= @name %>.key
28
29         CustomLog /var/log/apache2/<%= @name %>-access.log combined
30         ErrorLog /var/log/apache2/<%= @name %>-error.log
31
32         RedirectPermanent / https://<%= @name %>/
33 </VirtualHost>
34
35 <% end -%>
36 <VirtualHost *:443>
37         ServerName <%= @name %>
38         ServerAdmin webmaster@openstreetmap.org
39
40         SSLEngine on
41         SSLCertificateFile /etc/ssl/certs/<%= @name %>.pem
42         SSLCertificateKeyFile /etc/ssl/private/<%= @name %>.key
43
44         CustomLog /var/log/apache2/<%= @name %>-access.log combined
45         ErrorLog /var/log/apache2/<%= @name %>-error.log
46
47         SetEnv GIT_PROJECT_ROOT /var/lib/git
48         SetEnv GIT_HTTP_EXPORT_ALL
49
50         # KeepaliveTimeout longer than git config uploadpack.keepalive 5 second default
51         KeepAliveTimeout 20
52
53         ScriptAlias /public /usr/lib/git-core/git-http-backend/public
54         ScriptAlias /private /usr/lib/git-core/git-http-backend/private
55         Alias /gitweb /usr/share/gitweb
56         Alias /git /var/cache/git
57         ScriptAlias / /usr/lib/cgi-bin/gitweb.cgi/
58
59         <Location />
60                   Require all granted
61         </Location>
62 <% unless @private_allowed.empty? -%>
63
64         <Location /private>
65                   Require ip <%= @private_allowed.sort.join(" ") %>
66         </Location>
67 <% end -%>
68
69         <Location /private/chef.git>
70                   Require all denied
71         </Location>
72 </VirtualHost>
73
74 <Directory /usr/lib/git-core>
75         Options ExecCGI
76 </Directory>