X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/1c848471a16f9d1ee1fc8a327af110447ea1ef4c..0689c09ff5ec373c978c55abb058f4dfdee6ada6:/cookbooks/web/templates/default/apache.backend.erb diff --git a/cookbooks/web/templates/default/apache.backend.erb b/cookbooks/web/templates/default/apache.backend.erb index 17200cab9..7f3c3977b 100644 --- a/cookbooks/web/templates/default/apache.backend.erb +++ b/cookbooks/web/templates/default/apache.backend.erb @@ -1,12 +1,20 @@ # DO NOT EDIT - This file is being maintained by Chef +<% [80, 443].each do |port| -%> - +> # # Basic server configuration # ServerName <%= node[:fqdn] %> ServerAlias api.openstreetmap.org www.openstreetmap.org ServerAdmin webmaster@openstreetmap.org +<% if port == 443 -%> + + # + # Enable SSL + # + SSLEngine on +<% end -%> # # Setup logging @@ -15,6 +23,11 @@ CustomLog /var/log/apache2/access.log combined_with_time ErrorLog /var/log/apache2/error.log + # + # Turn on the rewrite engine + # + RewriteEngine on + # # Configure rails # @@ -23,6 +36,7 @@ PassengerMinInstances 3 PassengerMaxRequests 500 PassengerPreStart http://www.openstreetmap.org/ + SetEnv SECRET_KEY_BASE <%= @secret_key_base %> # # Get the real remote IP for requests via a trusted proxy @@ -31,9 +45,12 @@ RemoteIPTrustedProxy 146.179.159.160/27 # - # Pass map calls to cgimap + # Pass supported calls to cgimap # - - SetHandler fcgi:127.0.0.1:8000 - + RewriteRule ^/api/0\.6/map$ - [H=fcgi:127.0.0.1:8000] + RewriteCond %{REQUEST_METHOD} ^(HEAD|GET)$ + RewriteRule ^/api/0\.6/(node|way|relation)/[0-9]+$ - [H=fcgi:127.0.0.1:8000] + RewriteRule ^/api/0\.6/(way|relation)/[0-9]+/full$ - [H=fcgi:127.0.0.1:8000] + RewriteRule ^/api/0\.6/(nodes|ways|relations)$ - [H=fcgi:127.0.0.1:8000] +<% end -%>