Updated doc.md

This commit is contained in:
adolfintel 2018-08-22 17:23:25 +02:00
parent 7c24e3cc5e
commit 3c9974a5f8

4
doc.md
View file

@ -331,10 +331,12 @@ If you see a table called `speedtest_users`, empty, you did it right.
### Configuring `telemetry.php`
Open `telemetry_settings.php` with notepad or a similar text editor.
Set your preferred database, ``$db_type="mysql";``, ``$db_type="sqlite";`` or ``$db_type="postgresql";``
If you choose to use Sqlite3, you must set the path to your database file:
```php
$Sqlite_db_file = "../telemetry.sql";
$Sqlite_db_file = "../../telemetry.sql";
```
Sqlite doesn't require any additional configuration.
If you choose to use MySQL, you must also add your database credentials:
```php