X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/b4aedce6d4a03bb275d45b32934c40bba5e06774..38df5ffe2eaed2d8f8d57193ad5e408763d66e5e:/cookbooks/nominatim/templates/default/apache.erb diff --git a/cookbooks/nominatim/templates/default/apache.erb b/cookbooks/nominatim/templates/default/apache.erb index 120bccece..9f3dcd34b 100644 --- a/cookbooks/nominatim/templates/default/apache.erb +++ b/cookbooks/nominatim/templates/default/apache.erb @@ -2,13 +2,14 @@ <% [80, 443].each do |port| -%> > - ServerName nominatim.openstreetmap.org - ServerAdmin webmaster@openstreetmap.org + ServerName <%= node[:fqdn] %> + ServerAlias nominatim.openstreetmap.org ServerAlias nominatim.osm.org ServerAlias nominatim.openstreetmap.org ServerAlias nominatim.openstreetmap.net ServerAlias nominatim.openstreetmaps.org ServerAlias nominatim.openmaps.org + ServerAdmin webmaster@openstreetmap.org <% if port == 443 -%> # @@ -27,17 +28,29 @@ AddType text/html .php AddType application/xml .phpx AddType application/json .phpj +<% if node[:lsb][:release].to_f >= 14.04 -%> + ProxyPassMatch ^/(.*\.php(/.*)?)$ fcgi://127.0.0.1:<%= @pools[:www][:port ]%>/ + ProxyPassMatch ^/(.*\.phpx(/.*)?)$ fcgi://127.0.0.1:<%= @pools[:www][:port ]%>/ + ProxyPassMatch ^/(.*\.phpj(/.*)?)$ fcgi://127.0.0.1:<%= @pools[:www][:port ]%>/ +<% else -%> AddHandler fcgi:/var/run/php5-fpm-www.sock .php AddHandler fcgi:/var/run/php5-fpm-www.sock .phpx AddHandler fcgi:/var/run/php5-fpm-www.sock .phpj +<% end -%> <% @pools.each do |name,details| -%> Alias /pool-<%= name %>/ "<%= @directory %>/website/" > +<% if node[:lsb][:release].to_f >= 14.04 -%> + ProxyPassMatch ^/(.*\.php(/.*)?)$ fcgi://127.0.0.1:<%= details[:port ]%>/ + ProxyPassMatch ^/(.*\.phpx(/.*)?)$ fcgi://127.0.0.1:<%= details[:port ]%>/ + ProxyPassMatch ^/(.*\.phpj(/.*)?)$ fcgi://127.0.0.1:<%= details[:port ]%>/ +<% else -%> AddHandler fcgi:/var/run/php5-fpm-<%= name %>.sock .php AddHandler fcgi:/var/run/php5-fpm-<%= name %>.sock .phpx AddHandler fcgi:/var/run/php5-fpm-<%= name %>.sock .phpj +<% end -%> <% end -%>