X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/ad42559a18b5fa74f265fed70c5342840e361f07..cefa230b9f63d0aa01d44e362288966c51d67da5:/cookbooks/nominatim/templates/default/apache.erb diff --git a/cookbooks/nominatim/templates/default/apache.erb b/cookbooks/nominatim/templates/default/apache.erb index 8203cf1e5..4c16dcf4f 100644 --- a/cookbooks/nominatim/templates/default/apache.erb +++ b/cookbooks/nominatim/templates/default/apache.erb @@ -24,32 +24,29 @@ DocumentRoot <%= @directory %>/website /website/"> DirectoryIndex search.php - Options MultiViews FollowSymLinks - AddType text/html .php - AddType application/xml .phpx - AddType application/json .phpj + Options FollowSymLinks <% if node[:lsb][:release].to_f >= 14.04 -%> Require all granted <% end -%> - <% if node[:lsb][:release].to_f >= 14.04 -%> - ProxyPassMatch fcgi://127.0.0.1:<%= @pools[:www][:port ]%>/ + ProxyPassMatch /((?!pool-.*).*\.php(/.*)?)$ fcgi://127.0.0.1:<%= @pools[:www][:port ]%><%= @directory %>/website/$1 <% else -%> + SetHandler fcgi:/var/run/php5-fpm-www.sock -<% end -%> +<% end -%> <% @pools.each do |name,details| -%> Alias /pool-<%= name %>/ "<%= @directory %>/website/" - /.*\.php[xj]?(/.*)?$> <% if node[:lsb][:release].to_f >= 14.04 -%> - ProxyPassMatch fcgi://127.0.0.1:<%= details[:port ]%>/ + ProxyPassMatch /pool-<%= name %>/(.*\.php(/.*)?) fcgi://127.0.0.1:<%= details[:port ]%><%= @directory %>/website/$1 <% else -%> + /(.*\.php(/.*)?)$> SetHandler fcgi:/var/run/php5-fpm-<%= name %>.sock -<% end -%> +<% end -%> <% end -%> <% if node[:lsb][:release].to_f >= 14.04 -%> @@ -78,7 +75,7 @@ # regular requests and autoblocks RewriteMap bulklist txt:<%= @directory %>/settings/ip_blocks.map - RewriteRule ^/([sdr].*) /pool-${bulklist:%{REMOTE_ADDR}|www}/$1 [PT] + RewriteRule ^/(search|reverse|details)(\.php)?(/.*)? /pool-${bulklist:%{REMOTE_ADDR}|www}/$1.php$3 [PT]