Private GIT

Skip to content
Snippets Groups Projects
Unverified Commit c6c525a0 authored by shubazalam's avatar shubazalam Committed by GitHub
Browse files

change type from string to boolean for ssl_verify value

The ssl_verify option in config.php must be a boolean otherwise we are not able to connect PHPIpam to database. This small fix should make configuration clearer.
parent 28499f1b
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ $db['ssl'] = false; // true/false, enable or
// $db['ssl_ca'] = '/path/to/ca.crt'; // path to a file containing SSL CA certs
// $db['ssl_capath'] = '/path/to/ca_certs'; // path to a directory containing CA certs
// $db['ssl_cipher'] = 'HIGH:!PSK:!SHA:!MD5:!RC4:!aNULL'; // one or more SSL Ciphers, see openssl ciphers -v '....'
// $db['ssl_verify'] = 'true'; // Verify Common Name (CN) of server certificate?
// $db['ssl_verify'] = true; // Verify Common Name (CN) of server certificate?
$db['tmptable_engine_type'] = "MEMORY"; // Temporary table type to construct complex queries (MEMORY, InnoDB)
$db['use_cte'] = 1; // Use recursive CTE queries [>=MariaDB 10.2.2, >=MySQL 8.0] (0=disabled, 1=autodetect, 2=force enable)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment