]> git.openstreetmap.org Git - chef.git/commitdiff
nominatim: handle cors preflight in nginx directly
authorSarah Hoffmann <lonvia@denofr.de>
Tue, 1 Aug 2023 09:04:31 +0000 (11:04 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Tue, 1 Aug 2023 09:04:31 +0000 (11:04 +0200)
cookbooks/nominatim/templates/default/nginx.erb

index 567562454ad68ebb028a631467030fe39bd81683..a18a0666465fe1217cce52a40bd9ff4ffe32552b 100644 (file)
@@ -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;