mirror of
https://github.com/YunoHost-Apps/librespeed_ynh.git
synced 2024-09-03 19:36:23 +02:00
17 lines
591 B
PHP
17 lines
591 B
PHP
<?php
|
|
|
|
// Type of db: "mysql", "sqlite" or "postgresql"
|
|
$db_type = 'mysql';
|
|
// Password to login to stats.php. Change this!!!
|
|
$stats_password = '__PASSWORD__';
|
|
// If set to true, test IDs will be obfuscated to prevent users from guessing URLs of other tests
|
|
$enable_id_obfuscation = false;
|
|
// If set to true, IP addresses will be redacted from IP and ISP info fields, as well as the log
|
|
$redact_ip_addresses = false;
|
|
|
|
// Mysql settings
|
|
$MySql_username = '__DB_USER__';
|
|
$MySql_password = '__DB_PWD__';
|
|
$MySql_hostname = 'localhost';
|
|
$MySql_databasename = '__DB_NAME__';
|
|
$MySql_port = '3306';
|