]> git.openstreetmap.org Git - chef.git/blob - cookbooks/dns/templates/default/apache.erb
100d24e07846ea1b81e1543f412e3ea9d39c8597
[chef.git] / cookbooks / dns / 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         DocumentRoot <%= @directory %>/html
11         Alias /json/ /var/lib/dns/json/
12 </VirtualHost>
13
14 <Directory <%= @directory %>/html>
15         Require all granted
16 </Directory>
17
18 <Directory /var/lib/dns/json>
19         Require all granted
20 </Directory>