1 # DO NOT EDIT - This file is being maintained by Chef
4 ServerName <%= @name %>
5 ServerAdmin webmaster@openstreetmap.org
7 CustomLog /var/log/apache2/<%= @name %>-access.log combined
8 ErrorLog /var/log/apache2/<%= @name %>-error.log
10 RedirectPermanent / https://<%= @name %>/
14 ServerName <%= @name %>
15 ServerAdmin webmaster@openstreetmap.org
19 CustomLog /var/log/apache2/<%= @name %>-access.log combined
20 ErrorLog /var/log/apache2/<%= @name %>-error.log
22 DocumentRoot <%= @directory %>
24 Alias /gitweb /usr/share/gitweb
25 Alias /git /var/cache/git
26 ScriptAlias /gitweb.cgi /usr/lib/cgi-bin/gitweb.cgi
29 RewriteRule ^/$ /gitweb.cgi%{REQUEST_URI} [L,PT]
30 RewriteRule ^/(.*\.git/(?!/?(HEAD|info|objects|refs)).*)?$ /gitweb.cgi%{REQUEST_URI} [L,PT]
33 <Directory <%= @directory %>>