// Type of db: "mssql", "mysql", "sqlite" or "postgresql" $db_type = 'sqlite'; // Password to login to stats.php. Change this!!! $stats_password = 'PASSWORD'; //避免猜测url // If set to true, test IDs will be obfuscated to prevent users from guessing URLs of other tests $enable_id_obfuscation = True; //可以隐藏ip和isp信息 // If set to true, IP addresses will be redacted from IP and ISP info fields, as well as the log $redact_ip_addresses = false;
// mssql settings $MsSql_server = 'DB_HOSTNAME'; $MsSql_databasename = 'DB_NAME'; $MsSql_WindowsAuthentication = true; //true or false $MsSql_username = 'USERNAME'; //not used if MsSql_WindowsAuthentication is true $MsSql_password = 'PASSWORD'; //not used if MsSql_WindowsAuthentication is true $MsSql_TrustServerCertificate = true; //true, false or comment out for driver default //Download driver from https://docs.microsoft.com/en-us/sql/connect/php/download-drivers-php-sql-server?view=sql-server-ver16