Welcome! Log In Create A New Profile

Advanced

Re: CORS Issue : Fetch API cannot load http://mymapserveraddress/protomaps.pmtiles due to access control checks

August 31, 2024 10:17AM
I solved putting :

location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;


#if ($http_origin = ''){
#set $http_origin "*";
#}
#proxy_hide_header Access-Control-Allow-Origin;
#add_header Access-Control-Allow-Origin $http_origin;

autoindex on;
autoindex_exact_size off;
autoindex_localtime on;

add_header 'Access-Control-Allow-Origin' "$http_origin" always;
add_header 'Access-Control-Allow-Credentials' 'true' always;
add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS' always;
add_header 'Access-Control-Allow-Headers' 'Accept,Authorization,Cache-Control,Content-Type,DNT,If-Modified-Since,Keep-Alive,Origin,Range,User-Agent,X-Requested-With' always;

if ($request_method = 'OPTIONS') {
# Tell client that this pre-flight info is valid for 20 days
add_header 'Access-Control-Allow-Origin' "$http_origin" always;
add_header 'Access-Control-Allow-Headers' 'Accept,Authorization,Cache-Control,Content-Type,DNT,If-Modified-Since,Keep-Alive,Origin,Range,User-Agent,X-Requested-With' always;
add_header 'Access-Control-Max-Age' 1728000;
add_header 'Content-Type' 'text/plain charset=UTF-8';
add_header 'Content-Length' 0;
return 204;
}



}
Subject Author Posted

CORS Issue : Fetch API cannot load http://mymapserveraddress/protomaps.pmtiles due to access control checks

raphy August 30, 2024 11:19AM

Re: CORS Issue : Fetch API cannot load http://mymapserveraddress/protomaps.pmtiles due to access control checks

raphy August 31, 2024 10:17AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 116
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 500 on July 15, 2024
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready