Skip to content

Instantly share code, notes, and snippets.

@steffenr
Created March 21, 2013 19:35
Show Gist options
  • Save steffenr/5216005 to your computer and use it in GitHub Desktop.
Save steffenr/5216005 to your computer and use it in GitHub Desktop.
search_api_override_server_settings
<?php
// Overriding search api server settings with help of the
// searchapi_server_settings.module.
$conf['search_api_override_server_settings'] = array(
'smb_solr_server' => array(
'host' => 'localhost',
'port' => '8983',
'path' => '/solr',
'http_user' => '',
'http_pass' => '',
'excerpt' => 0,
'retrieve_data' => 0,
'highlight_data' => 0,
'http_method' => 'POST',
),
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment