]> git.openstreetmap.org Git - nominatim.git/blobdiff - settings/settings.php
aux properties, memory leaks, tweaks to search order
[nominatim.git] / settings / settings.php
index 84cfa3e55c9bae6663274138fcbd735a2336a5df..2c11d358cda445112d6927ff8371438faee7b186 100644 (file)
@@ -1,9 +1,15 @@
 <?php
+       if (file_exists(CONST_BasePath.'/settings/local.php')) require_once(CONST_BasePath.'/settings/local.php');
+       if (isset($_GET['debug']) && $_GET['debug']) @define('CONST_Debug', true);
 
        // General settings
        @define('CONST_Debug', false);
        @define('CONST_Database_DSN', 'pgsql://@/nominatim');
 
+       // Paths
+       @define('CONST_Path_Postgresql_Contrib', '/usr/share/postgresql/9.0/contrib');
+       @define('CONST_Path_Postgresql_Postgis', CONST_Path_Postgresql_Contrib.'/postgis-1.5');
+
        // Website settings
        @define('CONST_ClosedForIndexing', false);
        @define('CONST_ClosedForIndexingExceptionIPs', '');
@@ -19,5 +25,3 @@
        @define('CONST_Search_AreaPolygons_Enabled', true);
 
        @define('CONST_Suggestions_Enabled', false);
-
-