]> git.openstreetmap.org Git - nominatim.git/blob - settings/settings.php
Suport postgis 2.0 for search
[nominatim.git] / settings / settings.php
1 <?php
2         if (file_exists(CONST_BasePath.'/settings/local.php')) require_once(CONST_BasePath.'/settings/local.php');
3         if (isset($_GET['debug']) && $_GET['debug']) @define('CONST_Debug', true);
4
5         // General settings
6         @define('CONST_Debug', false);
7         @define('CONST_Database_DSN', 'pgsql://@/nominatim');
8
9         // Paths
10         @define('CONST_Postgresql_Version', '9.1');
11         @define('CONST_Path_Postgresql_Contrib', '/usr/share/postgresql/'.CONST_Postgresql_Version.'/contrib');
12         @define('CONST_Path_Postgresql_Postgis', CONST_Path_Postgresql_Contrib.'/postgis-1.5');
13         @define('CONST_Osm2pgsql_Binary', CONST_BasePath.'/osm2pgsql/osm2pgsql');
14         @define('CONST_Osmosis_Binary', CONST_BasePath.'/osmosis-0.38/bin/osmosis');
15
16         // Website settings
17         @define('CONST_ClosedForIndexing', false);
18         @define('CONST_ClosedForIndexingExceptionIPs', '');
19         @define('CONST_BlockedIPs', '');
20
21         @define('CONST_Website_BaseURL', 'http://'.php_uname('n').'/');
22         @define('CONST_Tile_Default', 'Mapnik');
23
24         @define('CONST_Default_Language', 'xx');
25         @define('CONST_Default_Lat', 20.0);
26         @define('CONST_Default_Lon', 0.0);
27         @define('CONST_Default_Zoom', 2);
28
29         @define('CONST_Search_AreaPolygons_Enabled', true);
30         @define('CONST_Search_AreaPolygons', true);
31
32         @define('CONST_Suggestions_Enabled', false);
33
34         // Log settings
35         @define('CONST_Log_DB', true);
36         @define('CONST_Log_File', false);
37         @define('CONST_Log_File_Format', 'TODO'); // Currently hard coded
38         @define('CONST_Log_File_SearchLog', '');
39         @define('CONST_Log_File_ReverseLog', '');