X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/ab9cda839738c28e54d47676383d054b0680d06a..80e13a7d8d736da2cf26cf044116b015c00c9b33:/cookbooks/gps-tile/templates/default/apache.erb diff --git a/cookbooks/gps-tile/templates/default/apache.erb b/cookbooks/gps-tile/templates/default/apache.erb index 73564f543..064d56284 100644 --- a/cookbooks/gps-tile/templates/default/apache.erb +++ b/cookbooks/gps-tile/templates/default/apache.erb @@ -1,19 +1,17 @@ # DO NOT EDIT - This file is being maintained by Chef -<% [80, 443].each do |port| -%> -> + # Basic server configuration - ServerName <%= node[:fqdn] %> + ServerName gps-tile.openstreetmap.org + ServerAlias *.gps-tile.openstreetmap.org ServerAlias 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 -<% end -%> + SSLCertificateFile /etc/ssl/certs/gps-tile.openstreetmap.org.pem + SSLCertificateKeyFile /etc/ssl/private/gps-tile.openstreetmap.org.key # Configure location of static files DocumentRoot /srv/gps-tile.openstreetmap.org/html @@ -34,7 +32,29 @@ Header set Access-Control-Allow-Origin "*" -<% end -%> + + # Basic server configuration + ServerName gps-tile.openstreetmap.org + ServerAlias *.gps-tile.openstreetmap.org + ServerAlias gps.tile.openstreetmap.org + ServerAlias gps-*.tile.openstreetmap.org + ServerAdmin webmaster@openstreetmap.org + + # Enable rewriting + RewriteEngine On + + # Redirect for ACME challenge validation + RedirectPermanent /.well-known/acme-challenge/ http://acme.openstreetmap.org/.well-known/acme-challenge/ + + # Redirect to https + RewriteRule (.*) https://%{SERVER_NAME}/$1 [R=permanent,L] + + # Setup logging + CustomLog /var/log/apache2/access.log combined + ErrorLog /var/log/apache2/error.log + BufferedLogs on + + Options None AllowOverride None