]> git.openstreetmap.org Git - chef.git/blob - cookbooks/stateofthemap/templates/default/apache.jekyll.erb
Use consistent ordering in apache configuration
[chef.git] / cookbooks / stateofthemap / templates / default / apache.jekyll.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 <% unless @aliases.empty? -%>
17
18 <VirtualHost *:443>
19   ServerName <%= @aliases.first %>
20 <% @aliases.drop(1).each do |alias_name| -%>
21   ServerAlias <%= alias_name %>
22 <% end -%>
23   ServerAdmin webmaster@openstreetmap.org
24
25   CustomLog /var/log/apache2/<%= @name %>-access.log combined
26   ErrorLog /var/log/apache2/<%= @name %>-error.log
27
28   SSLEngine on
29   SSLCertificateFile /etc/ssl/certs/<%= @name %>.pem
30   SSLCertificateKeyFile /etc/ssl/private/<%= @name %>.key
31
32   RedirectPermanent / https://<%= @name %>/
33 </VirtualHost>
34 <% end -%>
35
36 <VirtualHost *:443>
37   ServerName <%= @name %>
38   ServerAdmin webmaster@openstreetmap.org
39
40   CustomLog /var/log/apache2/<%= @name %>-access.log combined
41   ErrorLog /var/log/apache2/<%= @name %>-error.log
42
43   SSLEngine on
44   SSLCertificateFile /etc/ssl/certs/<%= @name %>.pem
45   SSLCertificateKeyFile /etc/ssl/private/<%= @name %>.key
46
47   RequestHeader set X-Forwarded-Proto "https"
48   RequestHeader set X-Forwarded-Port "443"
49
50   ProxyPass / http://localhost:<%= @docker_external_port %>/
51   ProxyPreserveHost on
52 </VirtualHost>