]> git.openstreetmap.org Git - nominatim.git/blob - settings/settings.php
increase search radius for named roads
[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         @define('CONST_Max_Word_Frequency', '50000');
9
10         // Paths
11         @define('CONST_Postgresql_Version', '9.1');
12         @define('CONST_Path_Postgresql_Contrib', '/usr/share/postgresql/'.CONST_Postgresql_Version.'/contrib');
13         @define('CONST_Path_Postgresql_Postgis', CONST_Path_Postgresql_Contrib.'/postgis-1.5');
14         @define('CONST_Osm2pgsql_Binary', CONST_BasePath.'/osm2pgsql/osm2pgsql');
15         @define('CONST_Osmosis_Binary', '/usr/bin/osmosis');
16
17         // Connection buckets to rate limit people being nasty
18         @define('CONST_ConnectionBucket_MemcacheServerAddress', false);
19         @define('CONST_ConnectionBucket_MemcacheServerPort', 11211);
20         @define('CONST_ConnectionBucket_MaxBlockList', 100);
21         @define('CONST_ConnectionBucket_LeakRate', 1);
22         @define('CONST_ConnectionBucket_BlockLimit', 10);
23         @define('CONST_ConnectionBucket_WaitLimit', 6);
24         @define('CONST_ConnectionBucket_MaxSleeping', 10);
25         @define('CONST_ConnectionBucket_Cost_Reverse', 1);
26         @define('CONST_ConnectionBucket_Cost_Search', 2);
27         @define('CONST_ConnectionBucket_Cost_Details', 3);
28
29         // Override this function to add an adjustment factor to the cost
30         // based on server load. e.g. getBlockingProcesses
31         if (!function_exists('user_busy_cost'))
32         {
33                 function user_busy_cost()
34                 {
35                         return 0;
36                 }
37         }
38
39         // Website settings
40         @define('CONST_NoAccessControl', true);
41         @define('CONST_ClosedForIndexing', false);
42         @define('CONST_ClosedForIndexingExceptionIPs', '');
43         @define('CONST_BlockedIPs', '');
44         @define('CONST_BulkUserIPs', '');
45
46         @define('CONST_Website_BaseURL', 'http://'.php_uname('n').'/');
47         @define('CONST_Tile_Default', 'Mapnik');
48
49         @define('CONST_Default_Language', 'xx');
50         @define('CONST_Default_Lat', 20.0);
51         @define('CONST_Default_Lon', 0.0);
52         @define('CONST_Default_Zoom', 2);
53
54         @define('CONST_Search_AreaPolygons_Enabled', true);
55         @define('CONST_Search_AreaPolygons', true);
56
57         @define('CONST_Suggestions_Enabled', false);
58
59         @define('CONST_Search_TryDroppedAddressTerms', false);
60
61         // Set to zero to disable polygon output
62         @define('CONST_PolygonOutput_MaximumTypes', 1);
63
64         // Log settings
65         @define('CONST_Log_DB', true);
66         @define('CONST_Log_File', false);
67         @define('CONST_Log_File_Format', 'TODO'); // Currently hard coded
68         @define('CONST_Log_File_SearchLog', '');
69         @define('CONST_Log_File_ReverseLog', '');