X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/7aa1c692da44b5441554522d486e01aa02b27c3a..e5cfdc9914e4d57a2e7cb5cfb370eeb97683f745:/cookbooks/nominatim/templates/default/apache.erb?ds=inline diff --git a/cookbooks/nominatim/templates/default/apache.erb b/cookbooks/nominatim/templates/default/apache.erb index add708d69..120bccece 100644 --- a/cookbooks/nominatim/templates/default/apache.erb +++ b/cookbooks/nominatim/templates/default/apache.erb @@ -1,6 +1,7 @@ # DO NOT EDIT - This file is being maintained by Chef - +<% [80, 443].each do |port| -%> +> ServerName nominatim.openstreetmap.org ServerAdmin webmaster@openstreetmap.org ServerAlias nominatim.osm.org @@ -9,6 +10,13 @@ ServerAlias nominatim.openstreetmaps.org ServerAlias nominatim.openmaps.org +<% if port == 443 -%> + # + # Enable SSL + # + SSLEngine on +<% end -%> + CustomLog /var/log/apache2/nominatim.openstreetmap.org-access.log combined ErrorLog /var/log/apache2/nominatim.openstreetmap.org-error.log @@ -27,16 +35,16 @@ <% @pools.each do |name,details| -%> Alias /pool-<%= name %>/ "<%= @directory %>/website/" > - 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 + 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 -%> - Redirect 509 /pool-block/ - ErrorDocument 509 /509.html + Redirect 420 /pool-block/ + ErrorDocument 420 /509.html - ErrorDocument 509 /509.html + ErrorDocument 420 /509.html Redirect 403 /pool-ban/ @@ -54,3 +62,5 @@ RewriteRule ^/([sdr].*) /pool-${bulklist:%{REMOTE_ADDR}|www}/$1 [PT] + +<% end -%>