]> git.openstreetmap.org Git - chef.git/blob - cookbooks/serverinfo/templates/default/apache.erb
Teach cgiirc about site aliases
[chef.git] / cookbooks / serverinfo / templates / default / apache.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 <VirtualHost *:80>
4    ServerName <%= @name %>
5    ServerAdmin webmaster@openstreetmap.org
6
7    CustomLog /var/log/apache2/<%= @name %>-access.log combined
8    ErrorLog /var/log/apache2/<%= @name %>-error.log
9
10    RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
11    Redirect permanent / https://<%= @name %>/
12 </VirtualHost>
13
14 <VirtualHost *:443>
15    ServerName <%= @name %>
16    ServerAdmin webmaster@openstreetmap.org
17
18    CustomLog /var/log/apache2/<%= @name %>-access.log combined
19    ErrorLog /var/log/apache2/<%= @name %>-error.log
20
21    SSLEngine on
22    SSLCertificateFile /etc/ssl/certs/<%= @name %>.pem
23    SSLCertificateKeyFile /etc/ssl/private/<%= @name %>.key
24
25    DocumentRoot <%= @directory %>
26 </VirtualHost>
27
28 <Directory <%= @directory %>>
29    Require all granted
30 </Directory>