X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/40e04dda9c896503238eef130e6bed4f06bd1738..f1d96634b8c36935c4c387f8c7e98a9e30698e80:/cookbooks/nominatim/templates/default/nginx.erb diff --git a/cookbooks/nominatim/templates/default/nginx.erb b/cookbooks/nominatim/templates/default/nginx.erb index 567562454..fe583d720 100644 --- a/cookbooks/nominatim/templates/default/nginx.erb +++ b/cookbooks/nominatim/templates/default/nginx.erb @@ -182,6 +182,11 @@ server { add_header Access-Control-Allow-Origin "*" always; } + location ~* ^/(search|reverse)(\.php)?/ { + error_page 404 /404-old-search-syntax.html; + return 404; + } + location @php { if ($blocked_user_agent ~ ^2$) { return 403; } @@ -202,6 +207,16 @@ server { fastcgi_param PATH_INFO "$nominatim_path_info"; fastcgi_param SCRIPT_FILENAME "<%= @directory %>/website/$nominatim_script_name"; <% elsif node[:nominatim][:api_flavour] == "python" %> + + if ($request_method = 'OPTIONS') { + add_header 'Content-Type' 'text/plain; charset=UTF-8'; + add_header 'Content-Length' 0; + add_header Access-Control-Allow-Origin "*"; + add_header Access-Control-Allow-Methods 'GET,OPTIONS'; + add_header Access-Control-Allow-Headers $http_access_control_request_headers; + return 204; + } + proxy_set_header Host $http_host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme;