X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/a723b942915a2f59bfc2c4d2e701ad720530627e..921cc233890705d6a916fa415b51fdd88fa8fe11:/lib/init-website.php diff --git a/lib/init-website.php b/lib/init-website.php index 40e4713e..eb275af2 100644 --- a/lib/init-website.php +++ b/lib/init-website.php @@ -1,33 +1,16 @@ = CONST_ConnectionBucket_BlockLimit) + if (CONST_NoAccessControl) { - echo "Your IP has been blocked. \n"; - echo "Please create a nominatim trac ticket (http://trac.openstreetmap.org/newticket?component=nominatim) to request this to be removed. \n"; - echo "Information on the Nominatim usage policy can be found here: http://wiki.openstreetmap.org/wiki/Nominatim#Usage_Policy \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; - if ($fBucketVal > CONST_ConnectionBucket_WaitLimit) - { - sleep(($fBucketVal - CONST_ConnectionBucket_WaitLimit)/CONST_ConnectionBucket_LeakRate); - } - header('Content-type: text/html; charset=utf-8'); + header('Content-type: text/html; charset=utf-8');