diff options
| author | 2015-07-17 18:16:00 +0200 | |
|---|---|---|
| committer | 2015-07-17 18:16:00 +0200 | |
| commit | d3a20cac129e63d57da27c16d5a11cc5db2a4db8 (patch) | |
| tree | 993b90156c36c26b17034d5d73da9ed9542c9b35 | |
| parent | 815a943e01af416e997c7081e158c9a6922a897f (diff) | |
Change default value for db['host'] and ['prefix']
See https://github.com/FreshRSS/FreshRSS/issues/890
| -rw-r--r-- | data/config.default.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/config.default.php b/data/config.default.php index 9a3ec87d7..6013b13b8 100644 --- a/data/config.default.php +++ b/data/config.default.php @@ -100,7 +100,7 @@ return array( 'type' => 'sqlite', # MySQL host. - 'host' => '', + 'host' => 'localhost', # MySQL user. 'user' => '', @@ -112,7 +112,7 @@ return array( 'base' => '', # MySQL table prefix. - 'prefix' => '', + 'prefix' => 'freshrss_', 'pdo_options' => array( //PDO::MYSQL_ATTR_SSL_KEY => '/path/to/client-key.pem', |
