]> git.openstreetmap.org Git - chef.git/blob - cookbooks/trac/templates/default/apache.erb
Add a bunch more cookbooks
[chef.git] / cookbooks / trac / templates / default / apache.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 WSGIDaemonProcess <%= @name %> user=<%= @user %> group=<%= @group %> maximum-requests=5000 threads=25 inactivity-timeout=180
4
5 <VirtualHost *:80>
6         ServerName <%= @name %>
7         ServerAdmin webmaster@openstreetmap.org
8
9         CustomLog /var/log/apache2/<%= @name %>-access.log combined
10         ErrorLog /var/log/apache2/<%= @name %>-error.log
11
12         RedirectPermanent / https://<%= @name %>/
13 </VirtualHost>
14
15 <VirtualHost *:443>
16         ServerName <%= @name %>
17         ServerAdmin webmaster@openstreetmap.org
18
19         CustomLog /var/log/apache2/<%= @name %>-access.log combined
20         ErrorLog /var/log/apache2/<%= @name %>-error.log
21
22         DocumentRoot <%= @directory %>/htdocs
23         Alias /robots.txt <%= @directory %>/htdocs/site/robots.txt
24         WSGIScriptAlias / <%= @directory %>/cgi-bin/trac.wsgi
25
26         WSGIProcessGroup <%= @name %>
27
28         DefineExternalAuth osm pipe /usr/local/bin/trac-authenticate
29
30         <Location /login>
31                 AuthType Basic
32                 AuthName "OpenStreetMap Trac"
33                 AuthBasicProvider external
34                 AuthExternal osm
35                 Require valid-user
36         </Location>
37
38         SSLEngine on
39 </VirtualHost>