diff options
author | Prashant S | 2020-07-10 17:44:02 +0530 |
---|---|---|
committer | GitHub | 2020-07-10 17:44:02 +0530 |
commit | b32d1e5f99bebdde72b312c6d93d05dbf9e28558 (patch) | |
tree | 378818d3b5dd50d5a61a92262680b4a9cee3df21 /bootstrap.inc | |
parent | 9f701719a2f93f7fa2fc5f9fc843454219009cc7 (diff) | |
parent | 2b3f23903b5a50482d797d88d5a0b73332aeaafb (diff) | |
download | scilab_solr_search-master.tar.gz scilab_solr_search-master.tar.bz2 scilab_solr_search-master.zip |
added and updated the code
Diffstat (limited to 'bootstrap.inc')
-rwxr-xr-x | bootstrap.inc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/bootstrap.inc b/bootstrap.inc new file mode 100755 index 0000000..a754f37 --- /dev/null +++ b/bootstrap.inc @@ -0,0 +1,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); +?> |