From aac9019ca9345582b8debfb8c4f3db8f55c3b648 Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Tue, 1 Aug 2023 11:04:31 +0200 Subject: [PATCH] nominatim: handle cors preflight in nginx directly --- cookbooks/nominatim/templates/default/nginx.erb | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/cookbooks/nominatim/templates/default/nginx.erb b/cookbooks/nominatim/templates/default/nginx.erb index 567562454..a18a06664 100644 --- a/cookbooks/nominatim/templates/default/nginx.erb +++ b/cookbooks/nominatim/templates/default/nginx.erb @@ -202,6 +202,15 @@ 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 "*" always; + add_header Access-Control-Allow-Methods 'GET,OPTIONS' always; + 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; -- 2.45.1