1 # DO NOT EDIT - This file is being maintained by Chef
3 WSGIDaemonProcess <%= @name %> user=<%= @user %> group=<%= @group %> maximum-requests=5000 threads=25 inactivity-timeout=180
6 ServerName <%= @name %>
7 <% @aliases.each do |alias_name| -%>
8 ServerAlias <%= alias_name %>
10 ServerAdmin webmaster@openstreetmap.org
12 CustomLog /var/log/apache2/<%= @name %>-access.log combined
13 ErrorLog /var/log/apache2/<%= @name %>-error.log
15 RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
16 RedirectPermanent / https://<%= @name %>/
18 <% unless @aliases.empty? -%>
21 ServerName <%= @aliases.first %>
22 <% @aliases.drop(1).each do |alias_name| -%>
23 ServerAlias <%= alias_name %>
25 ServerAdmin webmaster@openstreetmap.org
28 SSLCertificateFile /etc/ssl/certs/<%= @name %>.pem
29 SSLCertificateKeyFile /etc/ssl/private/<%= @name %>.key
31 CustomLog /var/log/apache2/<%= @name %>-access.log combined
32 ErrorLog /var/log/apache2/<%= @name %>-error.log
34 RedirectPermanent / https://<%= @name %>/
39 ServerName <%= @name %>
40 ServerAdmin webmaster@openstreetmap.org
43 SSLCertificateFile /etc/ssl/certs/<%= @name %>.pem
44 SSLCertificateKeyFile /etc/ssl/private/<%= @name %>.key
46 CustomLog /var/log/apache2/<%= @name %>-access.log combined
47 ErrorLog /var/log/apache2/<%= @name %>-error.log
49 DocumentRoot <%= @directory %>/htdocs
50 Alias /robots.txt <%= @directory %>/htdocs/site/robots.txt
51 WSGIScriptAlias / <%= @directory %>/cgi-bin/trac.wsgi
53 WSGIProcessGroup <%= @name %>
55 DefineExternalAuth osm pipe /usr/local/bin/trac-authenticate
59 AuthName "OpenStreetMap Trac"
60 AuthBasicProvider external
66 <Directory <%= @directory %>/htdocs>
70 <Directory <%= @directory %>/cgi-bin>