From 8e085fb1d2798d7d1c1212d2735d29c6c52b79fc Mon Sep 17 00:00:00 2001 From: DariusIII Date: Wed, 7 Feb 2018 23:40:03 +0100 Subject: [PATCH] Add sphinxql connection to config/database.php --- Changelog | 1 + config/database.php | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/Changelog b/Changelog index d3b807f99..c682c0df0 100755 --- a/Changelog +++ b/Changelog @@ -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 diff --git a/config/database.php b/config/database.php index c4e00b525..c62b102bc 100644 --- a/config/database.php +++ b/config/database.php @@ -91,6 +91,15 @@ return [ 'strict' => false, ], + 'sphinx' => [ + 'driver' => 'mysql', + 'host' => '127.0.0.1', + 'port' => 9306, + 'database' => '', + 'unix_socket' => '', + 'charset' => 'utf8', + ], + ], /*