Changed config db options from double quotes to single

This commit is contained in:
laf
2015-09-21 13:23:09 +00:00
parent 573ce88766
commit 8980bbc4e3
3 changed files with 13 additions and 13 deletions
+4 -4
View File
@@ -24,10 +24,10 @@ Log files created by LibreNMS will be stored within this directory.
These are the configuration options you will need to use to specify to get started.
```php
$config['db_host'] = "127.0.0.1";
$config['db_user'] = "";
$config['db_pass'] = "";
$config['db_name'] = "";
$config['db_host'] = '127.0.0.1';
$config['db_user'] = '';
$config['db_pass'] = '';
$config['db_name'] = '';
```
You can also select between the mysql and mysqli php extensions: