]> git.openstreetmap.org Git - chef.git/blob - cookbooks/chef/templates/default/apache.erb
osqa: remove search, replaced with duckduckgo iframe
[chef.git] / cookbooks / chef / templates / default / apache.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 <VirtualHost *:80>
4         ServerName chef.openstreetmap.org
5         ServerAlias chef.osm.org
6         ServerAdmin webmaster@openstreetmap.org
7
8         CustomLog /var/log/apache2/chef.openstreetmap.org-access.log combined_extended
9         ErrorLog /var/log/apache2/chef.openstreetmap.org-error.log
10
11         RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
12         Redirect permanent / https://chef.openstreetmap.org/
13 </VirtualHost>
14
15 <VirtualHost *:443>
16         ServerName chef.openstreetmap.org
17         ServerAdmin webmaster@openstreetmap.org
18
19         CustomLog /var/log/apache2/chef.openstreetmap.org-access.log combined_extended
20         ErrorLog /var/log/apache2/chef.openstreetmap.org-error.log
21
22         SSLEngine on
23         SSLProxyEngine on
24         SSLCertificateFile /etc/ssl/certs/chef.openstreetmap.org.pem
25         SSLCertificateKeyFile /etc/ssl/private/chef.openstreetmap.org.key
26
27         ProxyPassMatch ^/.*\.git/ !
28         ProxyPass / https://<%= node[:fqdn] %>:4443/
29         ProxyPreserveHost on
30 </VirtualHost>