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         ServerAdmin webmaster@openstreetmap.org
 
   9         CustomLog /var/log/apache2/<%= @name %>-access.log combined
 
  10         ErrorLog /var/log/apache2/<%= @name %>-error.log
 
  12         RedirectPermanent / https://<%= @name %>/
 
  16         ServerName <%= @name %>
 
  17         ServerAdmin webmaster@openstreetmap.org
 
  21         CustomLog /var/log/apache2/<%= @name %>-access.log combined
 
  22         ErrorLog /var/log/apache2/<%= @name %>-error.log
 
  24         DocumentRoot <%= @directory %>/htdocs
 
  25         Alias /robots.txt <%= @directory %>/htdocs/site/robots.txt
 
  26         WSGIScriptAlias / <%= @directory %>/cgi-bin/trac.wsgi
 
  28         WSGIProcessGroup <%= @name %>
 
  30         DefineExternalAuth osm pipe /usr/local/bin/trac-authenticate
 
  34                 AuthName "OpenStreetMap Trac"
 
  35                 AuthBasicProvider external
 
  41 <Directory <%= @directory %>/htdocs>
 
  45 <Directory <%= @directory %>/cgi-bin>