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