X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/3887469078c960437f54a71a98a6086c9706a6d3..ccdce35322a605e6665adbb32a804ef7476ac6fd:/lib/init-website.php?ds=sidebyside diff --git a/lib/init-website.php b/lib/init-website.php index 36928628..eb275af2 100644 --- a/lib/init-website.php +++ b/lib/init-website.php @@ -1,22 +1,16 @@

Access blocked

"; - echo "Your IP has been blocked for overusing OpenStreetMap's volunteer-run servers.
\n"; - echo 'Please consult the Nominatim usage policy for more information.'; - echo "\n\n"; - exit; + header("Access-Control-Allow-Origin: *"); + header("Access-Control-Allow-Methods: OPTIONS,GET"); + if (!empty($_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS'])) + { + header("Access-Control-Allow-Headers: ".$_SERVER['HTTP_ACCESS_CONTROL_REQUEST_HEADERS']); + } } + if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') exit; + - header('Content-type: text/html; charset=utf-8'); + header('Content-type: text/html; charset=utf-8');