X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/a44e21de49d397d8fb6d860a03f1cde711be59c0..f03b4012f07ab3d1e55838cadd7db4dd79705eed:/settings/settings.php diff --git a/settings/settings.php b/settings/settings.php index 4ebc199d..a0a884fe 100644 --- a/settings/settings.php +++ b/settings/settings.php @@ -5,13 +5,14 @@ // General settings @define('CONST_Debug', false); @define('CONST_Database_DSN', 'pgsql://@/nominatim'); + @define('CONST_Max_Word_Frequency', '50000'); // Paths @define('CONST_Postgresql_Version', '9.1'); @define('CONST_Path_Postgresql_Contrib', '/usr/share/postgresql/'.CONST_Postgresql_Version.'/contrib'); @define('CONST_Path_Postgresql_Postgis', CONST_Path_Postgresql_Contrib.'/postgis-1.5'); @define('CONST_Osm2pgsql_Binary', CONST_BasePath.'/osm2pgsql/osm2pgsql'); - @define('CONST_Osmosis_Binary', CONST_BasePath.'/osmosis-0.40.1/bin/osmosis'); + @define('CONST_Osmosis_Binary', '/usr/bin/osmosis'); // Website settings @define('CONST_ClosedForIndexing', false); @@ -32,6 +33,9 @@ @define('CONST_Suggestions_Enabled', false); + // Set to zero to disable polygon output + @define('CONST_PolygonOutput_MaximumTypes', 1); + // Log settings @define('CONST_Log_DB', true); @define('CONST_Log_File', false);