diff --git a/README.md b/README.md index 4127be9..500647e 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,9 @@ $ docker build -t adolfintel/speedtest:latest . $ docker run -d --name speedtest -p 0.0.0.0:80:80 adolfintel/speedtest:latest ``` +## Multiple test servers +Please see the ```mpot``` branch + ## Node.js backend A Node.js implementation is available in the ```node``` branch, maintained by [dunklesToast](https://github.com/dunklesToast). diff --git a/doc.md b/doc.md index c2ed9ca..f7a8622 100644 --- a/doc.md +++ b/doc.md @@ -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