Add sphinxql connection to config/database.php

This commit is contained in:
DariusIII
2018-02-07 23:40:03 +01:00
parent 1233b8ae53
commit 8e085fb1d2
2 changed files with 10 additions and 0 deletions
+1
View File
@@ -1,4 +1,5 @@
2018-02-07 DariusIII
* Chg: Add sphinxql connection to config/database.php
* Major upgrade: Upgraded to laravel/framework 5.6 and adjusted libraries
* Chg: Change escapeString function to static (in SphinxSearch class)
* Chg: Do not use delete_release stored procedure anymore to delete releases, FK's do it
+9
View File
@@ -91,6 +91,15 @@ return [
'strict' => false,
],
'sphinx' => [
'driver' => 'mysql',
'host' => '127.0.0.1',
'port' => 9306,
'database' => '',
'unix_socket' => '',
'charset' => 'utf8',
],
],
/*