1 # DO NOT EDIT - This file is being maintained by Chef
3 <% [80, 443].each do |port| -%>
4 <VirtualHost *:<%= port %>>
5 ServerName <%= node[:fqdn] %>
6 ServerAlias nominatim.openstreetmap.org
7 ServerAlias nominatim.osm.org
8 ServerAlias nominatim.openstreetmap.org
9 ServerAlias nominatim.openstreetmap.net
10 ServerAlias nominatim.openstreetmaps.org
11 ServerAlias nominatim.openmaps.org
12 ServerAdmin webmaster@openstreetmap.org
21 CustomLog /var/log/apache2/nominatim.openstreetmap.org-access.log combined
22 ErrorLog /var/log/apache2/nominatim.openstreetmap.org-error.log
24 DocumentRoot <%= @directory %>/website
25 <Directory "<%= @directory %>/website/">
26 DirectoryIndex search.php
27 Options MultiViews FollowSymLinks
28 AddType text/html .php
29 AddType application/xml .phpx
30 AddType application/json .phpj
31 <% if node[:lsb][:release].to_f >= 14.04 -%>
32 ProxyPassMatch ^/(.*\.php(/.*)?)$ fcgi://127.0.0.1:<%= @pools[:www][:port ]%>/
33 ProxyPassMatch ^/(.*\.phpx(/.*)?)$ fcgi://127.0.0.1:<%= @pools[:www][:port ]%>/
34 ProxyPassMatch ^/(.*\.phpj(/.*)?)$ fcgi://127.0.0.1:<%= @pools[:www][:port ]%>/
36 AddHandler fcgi:/var/run/php5-fpm-www.sock .php
37 AddHandler fcgi:/var/run/php5-fpm-www.sock .phpx
38 AddHandler fcgi:/var/run/php5-fpm-www.sock .phpj
42 <% @pools.each do |name,details| -%>
43 Alias /pool-<%= name %>/ "<%= @directory %>/website/"
44 <Location /pool-<%= name %>>
45 <% if node[:lsb][:release].to_f >= 14.04 -%>
46 ProxyPassMatch ^/(.*\.php(/.*)?)$ fcgi://127.0.0.1:<%= details[:port ]%>/
47 ProxyPassMatch ^/(.*\.phpx(/.*)?)$ fcgi://127.0.0.1:<%= details[:port ]%>/
48 ProxyPassMatch ^/(.*\.phpj(/.*)?)$ fcgi://127.0.0.1:<%= details[:port ]%>/
50 AddHandler fcgi:/var/run/php5-fpm-<%= name %>.sock .php
51 AddHandler fcgi:/var/run/php5-fpm-<%= name %>.sock .phpx
52 AddHandler fcgi:/var/run/php5-fpm-<%= name %>.sock .phpj
57 Redirect 420 /pool-block/
58 ErrorDocument 420 /509.html
59 <Location /pool-block>
60 ErrorDocument 420 /509.html
62 Redirect 403 /pool-ban/
64 ErrorDocument 403 /403.html
66 ErrorDocument 403 /403.html
71 Include <%= @directory %>/settings/apache_blocks.conf
73 # regular requests and autoblocks
74 RewriteMap bulklist txt:<%= @directory %>/settings/ip_blocks.map
75 RewriteRule ^/([sdr].*) /pool-${bulklist:%{REMOTE_ADDR}|www}/$1 [PT]