]> git.openstreetmap.org Git - nominatim.git/blob - settings/settings.php
nominatim refactoring
[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         // Website settings
8         @define('CONST_ClosedForIndexing', false);
9         @define('CONST_ClosedForIndexingExceptionIPs', '');
10         @define('CONST_BlockedIPs', '');
11
12         @define('CONST_Website_BaseURL', 'http://'.php_uname('n').'/');
13
14         @define('CONST_Default_Language', 'xx');
15         @define('CONST_Default_Lat', 20.0);
16         @define('CONST_Default_Lon', 0.0);
17         @define('CONST_Default_Zoom', 2);
18
19         @define('CONST_Search_AreaPolygons_Enabled', true);
20
21         @define('CONST_Suggestions_Enabled', false);
22
23