]> git.openstreetmap.org Git - nominatim.git/blobdiff - lib/init-website.php
take throttled ip stats from build dir
[nominatim.git] / lib / init-website.php
index ce046eaa6b752ef8d9bb41e4ef1e8025b5fc000a..db03a12ce1b694381412dd8e636e19bad6f4fb3f 100644 (file)
@@ -1,4 +1,17 @@
 <?php
-    require_once('init.php');
+       require_once('init.php');
+       require_once('website.php');
 
-    header('Content-type: text/html; charset=utf-8');
+       if (CONST_NoAccessControl)
+       {
+               header("Access-Control-Allow-Origin: *");
+               header("Access-Control-Allow-Methods: OPTIONS,GET");
+               header("Access-Control-Max-Age: 8640000");
+               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');