X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/294adb0cb8e908dc374de0b63328538a0b568896..ecb5d5beac1e41d30e47daa6a034c59b33027d12:/cookbooks/tile/templates/default/apache.erb
diff --git a/cookbooks/tile/templates/default/apache.erb b/cookbooks/tile/templates/default/apache.erb
index 4fdb67b8d..24b87902b 100644
--- a/cookbooks/tile/templates/default/apache.erb
+++ b/cookbooks/tile/templates/default/apache.erb
@@ -26,7 +26,8 @@
ErrorLog /var/log/apache2/error.log
BufferedLogs on
- # Set Access-Control-Allow-Origin header to allow Cross-origin resource sharing (CORS)
+ # Always set Access-Control-Allow-Origin so that simple CORS requests
+ # will always work and can be cached
Header set Access-Control-Allow-Origin "*"
# Enable the rewrite engine
@@ -46,13 +47,21 @@
Options None
AllowOverride None
+<% if node[:lsb][:release].to_f >= 14.04 -%>
+ Require all granted
+<% else -%>
Order allow,deny
Allow from all
+<% end -%>
Options ExecCGI
AllowOverride None
+<% if node[:lsb][:release].to_f >= 14.04 -%>
+ Require all granted
+<% else -%>
Order allow,deny
Allow from all
+<% end -%>