blob: a754f378ad22c2053a39783515697e5e1a54564f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
/* Domain name of the Solr server */
define('SOLR_SERVER_HOSTNAME', 'localhost');
/* HTTP Port to connection */
define('SOLR_SERVER_PORT', '8983');
/* HTTP Basic Authentication Username */
define('SOLR_SERVER_USERNAME', '');
/* HTTP Basic Authentication password */
define('SOLR_SERVER_PASSWORD', '');
/* 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', 500000);
?>
|