]> git.openstreetmap.org Git - nominatim.git/blob - settings/settings.php
Merge pull request #219 from mizabrik/master
[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         // Set to false to avoid importing extra postcodes for the US.
15         @define('CONST_Use_Extra_US_Postcodes', true);
16         // Set to true after importing Tiger house number data for the US.
17         // Note: The tables must already exist or queries will throw errors.
18         //       After changing this setting run ./utils/setup --create-functions
19         //       again.
20         @define('CONST_Use_US_Tiger_Data', false);
21         // Set to true after importing other external house number data.
22         // Note: the aux tables must already exist or queries will throw errors.
23         //       After changing this setting run ./utils/setup --create-functions
24         //       again.
25         @define('CONST_Use_Aux_Location_data', false);
26
27         // Proxy settings
28         @define('CONST_HTTP_Proxy', false);
29         @define('CONST_HTTP_Proxy_Host', 'proxy.mydomain.com');
30         @define('CONST_HTTP_Proxy_Port', '3128');
31         @define('CONST_HTTP_Proxy_Login', '');
32         @define('CONST_HTTP_Proxy_Password', '');
33
34         // Paths
35         @define('CONST_Osm2pgsql_Binary', CONST_InstallPath.'/osm2pgsql/osm2pgsql');
36         @define('CONST_Osmosis_Binary', '/usr/bin/osmosis');
37         @define('CONST_Tiger_Data_Path', CONST_BasePath.'/data/tiger');
38
39         // osm2pgsql settings
40         @define('CONST_Osm2pgsql_Flatnode_File', null);
41
42         // tablespace settings
43         // osm2pgsql caching tables (aka slim mode tables) - update only
44         @define('CONST_Tablespace_Osm2pgsql_Data', false);
45         @define('CONST_Tablespace_Osm2pgsql_Index', false);
46         // osm2pgsql output tables (aka main table) - update only
47         @define('CONST_Tablespace_Place_Data', false);
48         @define('CONST_Tablespace_Place_Index', false);
49         // address computation tables - update only
50         @define('CONST_Tablespace_Address_Data', false);
51         @define('CONST_Tablespace_Address_Index', false);
52         // search tables - needed for lookups
53         @define('CONST_Tablespace_Search_Data', false);
54         @define('CONST_Tablespace_Search_Index', false);
55         // additional data, e.g. TIGER data, type searches - needed for lookups
56         @define('CONST_Tablespace_Aux_Data', false);
57         @define('CONST_Tablespace_Aux_Index', false);
58
59         // Replication settings
60         @define('CONST_Replication_Url', 'http://planet.openstreetmap.org/replication/minute');
61         @define('CONST_Replication_MaxInterval', '3600');
62         @define('CONST_Replication_Update_Interval', '60');  // How often upstream publishes diffs
63         @define('CONST_Replication_Recheck_Interval', '60'); // How long to sleep if no update found yet
64
65         // Connection buckets to rate limit people being nasty
66         @define('CONST_ConnectionBucket_MemcacheServerAddress', false);
67         @define('CONST_ConnectionBucket_MemcacheServerPort', 11211);
68         @define('CONST_ConnectionBucket_MaxBlockList', 100);
69         @define('CONST_ConnectionBucket_LeakRate', 1);
70         @define('CONST_ConnectionBucket_BlockLimit', 10);
71         @define('CONST_ConnectionBucket_WaitLimit', 6);
72         @define('CONST_ConnectionBucket_MaxSleeping', 10);
73         @define('CONST_ConnectionBucket_Cost_Reverse', 1);
74         @define('CONST_ConnectionBucket_Cost_Search', 2);
75         @define('CONST_ConnectionBucket_Cost_Details', 3);
76         @define('CONST_ConnectionBucket_Cost_Status', 1);
77
78         // Override this function to add an adjustment factor to the cost
79         // based on server load. e.g. getBlockingProcesses
80         if (!function_exists('user_busy_cost'))
81         {
82                 function user_busy_cost()
83                 {
84                         return 0;
85                 }
86         }
87
88         // Website settings
89         @define('CONST_NoAccessControl', true);
90         @define('CONST_BlockedIPs', '');
91         @define('CONST_BulkUserIPs', '');
92         @define('CONST_BlockMessage', ''); // additional info to show for blocked IPs
93
94         @define('CONST_Website_BaseURL', 'http://'.php_uname('n').'/');
95         // Language to assume when none is supplied with the query.
96         // When set to false, the local language (i.e. the name tag without suffix)
97         // will be used.
98         @define('CONST_Default_Language', false);
99         // Appearance of the map in the debug interface.
100         @define('CONST_Default_Lat', 20.0);
101         @define('CONST_Default_Lon', 0.0);
102         @define('CONST_Default_Zoom', 2);
103         @define('CONST_Map_Tile_URL', 'http://{s}.tile.osm.org/{z}/{x}/{y}.png');
104         @define('CONST_Map_Tile_Attribution', ''); // Set if tile source isn't osm.org
105
106         @define('CONST_Search_AreaPolygons', true);
107
108         @define('CONST_Search_BatchMode', false);
109
110         @define('CONST_Search_TryDroppedAddressTerms', false);
111         @define('CONST_Search_NameOnlySearchFrequencyThreshold', 500);
112         // If set to true, then reverse order of queries will be tried by default.
113         // When set to false only selected languages alloow reverse search.
114         @define('CONST_Search_ReversePlanForAll', true);
115
116         // Maximum number of OSM ids that may be queried at once
117         // for the places endpoint.
118         @define('CONST_Places_Max_ID_count', 50); 
119
120         // Number of different geometry formats that may be queried in parallel.
121         // Set to zero to disable polygon output.
122         @define('CONST_PolygonOutput_MaximumTypes', 1);
123
124         // Log settings
125         // Set to true to log into new_query_log table.
126         // You should set up a cron job that regularly clears out this table.
127         @define('CONST_Log_DB', false);
128         // Set to a file name to enable logging to a file.
129         @define('CONST_Log_File', false);
130
131