]> git.openstreetmap.org Git - nominatim.git/blobdiff - settings/settings.php
tigger data import
[nominatim.git] / settings / settings.php
index 84cfa3e55c9bae6663274138fcbd735a2336a5df..51c66ee0d1a5f3ef20664f8629717afd2add6e8a 100644 (file)
@@ -1,8 +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');
+       @define('CONST_Database_DSN', 'pgsql://brian@/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);
@@ -19,5 +26,3 @@
        @define('CONST_Search_AreaPolygons_Enabled', true);
 
        @define('CONST_Suggestions_Enabled', false);
-
-