]> git.openstreetmap.org Git - nominatim.git/blob - settings/settings.php
remove unused settings
[nominatim.git] / settings / settings.php
1 <?php
2         @define('CONST_BasePath', '@CMAKE_SOURCE_DIR@');
3         @define('CONST_InstallPath', '@CMAKE_BINARY_DIR@');
4         if (file_exists(getenv('NOMINATIM_SETTINGS'))) require_once(getenv('NOMINATIM_SETTINGS'));
5         if (file_exists(CONST_InstallPath.'/settings/local.php')) require_once(CONST_InstallPath.'/settings/local.php');
6         if (isset($_GET['debug']) && $_GET['debug']) @define('CONST_Debug', true);
7
8         // General settings
9         @define('CONST_Debug', false);
10         @define('CONST_Database_DSN', 'pgsql://@/nominatim'); // <driver>://<username>:<password>@<host>:<port>/<database>
11         @define('CONST_Database_Web_User', 'www-data');
12         @define('CONST_Max_Word_Frequency', '50000');
13         @define('CONST_Limit_Reindexing', true);
14
15         // Proxy settings
16         @define('CONST_HTTP_Proxy', false);
17         @define('CONST_HTTP_Proxy_Host', 'proxy.mydomain.com');
18         @define('CONST_HTTP_Proxy_Port', '3128');
19         @define('CONST_HTTP_Proxy_Login', '');
20         @define('CONST_HTTP_Proxy_Password', '');
21
22         // Paths
23         @define('CONST_Osm2pgsql_Binary', CONST_InstallPath.'/osm2pgsql/osm2pgsql');
24         @define('CONST_Osmosis_Binary', '/usr/bin/osmosis');
25         @define('CONST_Tiger_Data_Path', CONST_BasePath.'/data/tiger');
26
27         // osm2pgsql settings
28         @define('CONST_Osm2pgsql_Flatnode_File', null);
29
30         // tablespace settings
31         // osm2pgsql caching tables (aka slim mode tables) - update only
32         @define('CONST_Tablespace_Osm2pgsql_Data', false);
33         @define('CONST_Tablespace_Osm2pgsql_Index', false);
34         // osm2pgsql output tables (aka main table) - update only
35         @define('CONST_Tablespace_Place_Data', false);
36         @define('CONST_Tablespace_Place_Index', false);
37         // address computation tables - update only
38         @define('CONST_Tablespace_Address_Data', false);
39         @define('CONST_Tablespace_Address_Index', false);
40         // search tables - needed for lookups
41         @define('CONST_Tablespace_Search_Data', false);
42         @define('CONST_Tablespace_Search_Index', false);
43         // additional data, e.g. TIGER data, type searches - needed for lookups
44         @define('CONST_Tablespace_Aux_Data', false);
45         @define('CONST_Tablespace_Aux_Index', false);
46
47         // Replication settings
48         @define('CONST_Replication_Url', 'http://planet.openstreetmap.org/replication/minute');
49         @define('CONST_Replication_MaxInterval', '3600');
50         @define('CONST_Replication_Update_Interval', '60');  // How often upstream publishes diffs
51         @define('CONST_Replication_Recheck_Interval', '60'); // How long to sleep if no update found yet
52
53         // Connection buckets to rate limit people being nasty
54         @define('CONST_ConnectionBucket_MemcacheServerAddress', false);
55         @define('CONST_ConnectionBucket_MemcacheServerPort', 11211);
56         @define('CONST_ConnectionBucket_MaxBlockList', 100);
57         @define('CONST_ConnectionBucket_LeakRate', 1);
58         @define('CONST_ConnectionBucket_BlockLimit', 10);
59         @define('CONST_ConnectionBucket_WaitLimit', 6);
60         @define('CONST_ConnectionBucket_MaxSleeping', 10);
61         @define('CONST_ConnectionBucket_Cost_Reverse', 1);
62         @define('CONST_ConnectionBucket_Cost_Search', 2);
63         @define('CONST_ConnectionBucket_Cost_Details', 3);
64         @define('CONST_ConnectionBucket_Cost_Status', 1);
65
66         // Override this function to add an adjustment factor to the cost
67         // based on server load. e.g. getBlockingProcesses
68         if (!function_exists('user_busy_cost'))
69         {
70                 function user_busy_cost()
71                 {
72                         return 0;
73                 }
74         }
75
76         // Website settings
77         @define('CONST_NoAccessControl', true);
78         @define('CONST_BlockedIPs', '');
79         @define('CONST_BulkUserIPs', '');
80         @define('CONST_BlockMessage', ''); // additional info to show for blocked IPs
81
82         @define('CONST_Website_BaseURL', 'http://'.php_uname('n').'/');
83         // Language to assume when none is supplied with the query.
84         // When set to false, the local language (i.e. the name tag without suffix)
85         // will be used.
86         @define('CONST_Default_Language', false);
87         // Appearance of the map in the debug interface.
88         @define('CONST_Default_Lat', 20.0);
89         @define('CONST_Default_Lon', 0.0);
90         @define('CONST_Default_Zoom', 2);
91         @define('CONST_Map_Tile_URL', 'http://{s}.tile.osm.org/{z}/{x}/{y}.png');
92         @define('CONST_Map_Tile_Attribution', ''); // Set if tile source isn't osm.org
93
94         @define('CONST_Search_AreaPolygons', true);
95
96         @define('CONST_Search_BatchMode', false);
97
98         @define('CONST_Search_TryDroppedAddressTerms', false);
99         @define('CONST_Search_NameOnlySearchFrequencyThreshold', 500);
100         // If set to true, then reverse order of queries will be tried by default.
101         // When set to false only selected languages alloow reverse search.
102         @define('CONST_Search_ReversePlanForAll', true);
103
104         // Maximum number of OSM ids that may be queried at once
105         // for the places endpoint.
106         @define('CONST_Places_Max_ID_count', 50); 
107
108         // Number of different geometry formats that may be queried in parallel.
109         // Set to zero to disable polygon output.
110         @define('CONST_PolygonOutput_MaximumTypes', 1);
111
112         // Log settings
113         @define('CONST_Log_DB', true);
114         @define('CONST_Log_File', false);
115         @define('CONST_Log_File_Format', 'TODO'); // Currently hard coded
116         @define('CONST_Log_File_SearchLog', '');
117         @define('CONST_Log_File_ReverseLog', '');
118
119