* @author Sybille Buers, Gabriele Droege (BGBM, GGBN/DNA Bank Network)
* @version 1.0
* @package Config
* @copyright Copyright © 2014 GGBN http://www.ggbn.org
The contents of this file are subject to the Mozilla Public License Version 1.1
* @filesource
* @license http://www.mozilla.org/MPL/ MPL
*/
/* Domain name of the Solr server */
// define('SOLR_SERVER_HOSTNAME', 'localhost');
define ( 'SOLR_SERVER_HOSTNAME', 'bgbm-web01' );
/* Whether or not to run in secure mode */
define ( 'SOLR_SECURE', false );
/* HTTP Port to connection */
// define('SOLR_SERVER_PORT', ((SOLR_SECURE) ? 8443 : 8983));
define ( 'SOLR_SERVER_PORT', 8080 );
/* HTTP Basic Authentication Username */
define ( 'SOLR_SERVER_USERNAME', '' );
/* HTTP Basic Authentication password */
define ( 'SOLR_SERVER_PASSWORD', '' );
define ( 'SOLR_MAIN_CORE', 'solr/ggbn_Gabi' );
// define('SOLR_ASSOCIATED_CORE', 'solr/ggbn_asso_Gabi');
/* HTTP connection timeout */
/* This is maximum time in seconds allowed for the http data transfer operation. Default value is 30 seconds */
define ( 'SOLR_SERVER_TIMEOUT', 10 );
/* File name to a PEM-formatted private key + private certificate (concatenated in that order) */
// define('SOLR_SSL_CERT', 'certs/combo.pem');
/* File name to a PEM-formatted private certificate only */
// define('SOLR_SSL_CERT_ONLY', 'certs/solr.crt');
/* File name to a PEM-formatted private key */
// define('SOLR_SSL_KEY', 'certs/solr.key');
/* Password for PEM-formatted private key file */
// define('SOLR_SSL_KEYPASSWORD', 'StrongAndSecurePassword');
/* Name of file holding one or more CA certificates to verify peer with */
// define('SOLR_SSL_CAINFO', 'certs/cacert.crt');
/* Name of directory holding multiple CA certificates to verify peer with */
// define('SOLR_SSL_CAPATH', 'certs/');
?>