# DO NOT EDIT - This file is being maintained by Chef
-<% [80, 443].each do |port| -%>
-<VirtualHost *:<%= port %>>
+<VirtualHost *:443>
ServerName <%= node[:fqdn] %>
ServerAlias nominatim.openstreetmap.org
ServerAlias nominatim.osm.org
ServerAlias nominatim.openmaps.org
ServerAdmin webmaster@openstreetmap.org
-<% if port == 443 -%>
# Enable SSL
SSLEngine on
SSLProxyEngine on
SSLCertificateFile /etc/ssl/certs/nominatim.openstreetmap.org.pem
SSLCertificateKeyFile /etc/ssl/private/nominatim.openstreetmap.org.key
-<% else -%>
- # Redirect ACME challenges for certificate issuance
- RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
-<% end -%>
# Remove Proxy request header to mitigate https://httpoxy.org/
RequestHeader unset Proxy early
RewriteMap bulklist txt:<%= @directory %>/settings/ip_blocks.map
RewriteRule ^/(search|reverse|lookup)(\.php)?(/.*)? /pool-${bulklist:%{REMOTE_ADDR}|www}/$1.php$3 [PT]
RewriteRule ^/details(\.php)?(/.*)? /pool-${bulklist:%{REMOTE_ADDR}|details}/details.php$2 [PT]
-
</VirtualHost>
-<% end -%>
+<VirtualHost *:80>
+ ServerName <%= node[:fqdn] %>
+ ServerAlias nominatim.openstreetmap.org
+ ServerAlias nominatim.osm.org
+ ServerAlias nominatim.openstreetmap.com
+ ServerAlias nominatim.openstreetmap.net
+ ServerAlias nominatim.openstreetmaps.org
+ ServerAlias nominatim.openmaps.org
+ ServerAdmin webmaster@openstreetmap.org
+
+ CustomLog <%= node[:nominatim][:logdir] %>/nominatim.openstreetmap.org-access.log combined
+ ErrorLog /var/log/apache2/nominatim.openstreetmap.org-error.log
+
+ RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/
+ RedirectPermanent / https://nominatim.openstreetmap.org/
+</VirtualHost>