]> git.openstreetmap.org Git - nominatim.git/blob - settings/settings.php
tigger data import
[nominatim.git] / settings / settings.php
1 <?php
2
3         if (file_exists(CONST_BasePath.'/settings/local.php')) require_once(CONST_BasePath.'/settings/local.php');
4         if (isset($_GET['debug']) && $_GET['debug']) @define('CONST_Debug', true);
5
6         // General settings
7         @define('CONST_Debug', false);
8         @define('CONST_Database_DSN', 'pgsql://brian@/nominatim');
9
10         // Paths
11         @define('CONST_Path_Postgresql_Contrib', '/usr/share/postgresql/9.0/contrib');
12         @define('CONST_Path_Postgresql_Postgis', CONST_Path_Postgresql_Contrib.'/postgis-1.5');
13
14         // Website settings
15         @define('CONST_ClosedForIndexing', false);
16         @define('CONST_ClosedForIndexingExceptionIPs', '');
17         @define('CONST_BlockedIPs', '');
18
19         @define('CONST_Website_BaseURL', 'http://'.php_uname('n').'/');
20
21         @define('CONST_Default_Language', 'xx');
22         @define('CONST_Default_Lat', 20.0);
23         @define('CONST_Default_Lon', 0.0);
24         @define('CONST_Default_Zoom', 2);
25
26         @define('CONST_Search_AreaPolygons_Enabled', true);
27
28         @define('CONST_Suggestions_Enabled', false);