X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/d52ea11424ee345aaa045e84cf4410db3b93694b..aac9019ca9345582b8debfb8c4f3db8f55c3b648:/cookbooks/nominatim/templates/default/nginx.erb diff --git a/cookbooks/nominatim/templates/default/nginx.erb b/cookbooks/nominatim/templates/default/nginx.erb index 3d7d0e19c..a18a06664 100644 --- a/cookbooks/nominatim/templates/default/nginx.erb +++ b/cookbooks/nominatim/templates/default/nginx.erb @@ -146,7 +146,7 @@ server { ssl_certificate_key /etc/ssl/private/<%= node[:fqdn] %>.key; root <%= @directory %>/static-website; - index search.php; + index /search; access_log <%= node[:nominatim][:logdir] %>/nominatim.openstreetmap.org-access.log combined; error_log <%= node[:nominatim][:logdir] %>/nominatim.openstreetmap.org-error.log; @@ -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;