X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/f30d59e20c5c515986a14c86afbbc7f164ee1eb0..c4817c654797638bf16b54f4f9b69ed3715625cb:/cookbooks/gps-tile/templates/default/apache.erb?ds=sidebyside diff --git a/cookbooks/gps-tile/templates/default/apache.erb b/cookbooks/gps-tile/templates/default/apache.erb index 7572327c3..7dbd24b41 100644 --- a/cookbooks/gps-tile/templates/default/apache.erb +++ b/cookbooks/gps-tile/templates/default/apache.erb @@ -1,11 +1,20 @@ # DO NOT EDIT - This file is being maintained by Chef - +<% [80, 443].each do |port| -%> +> # Basic server configuration - ServerName <%= node[:fqdn] %> - ServerAlias gps-tile.openstreetmap.org + ServerName gps-tile.openstreetmap.org ServerAlias *.gps-tile.openstreetmap.org + ServerAlias gps.tile.openstreetmap.org + ServerAlias gps-*.tile.openstreetmap.org ServerAdmin webmaster@openstreetmap.org +<% if port == 443 -%> + + # Enable SSL + SSLEngine on + SSLCertificateFile /etc/ssl/certs/gps-tile.openstreetmap.org.pem + SSLCertificateKeyFile /etc/ssl/private/gps-tile.openstreetmap.org.key +<% end -%> # Configure location of static files DocumentRoot /srv/gps-tile.openstreetmap.org/html @@ -13,6 +22,9 @@ # Configure the CGI script that serves the tiles ScriptAlias /lines /srv/gps-tile.openstreetmap.org/updater/tile + # Redirect for ACMI challenge validation + RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/ + # Temporary redirect for old CGI location RedirectPermanent /gps-lines/tile /lines @@ -26,9 +38,15 @@ Header set Access-Control-Allow-Origin "*" +<% end -%> Options None AllowOverride None - Order allow,deny - Allow from all + Require all granted + + + + + Require all granted +