Merge pull request #402 from VVelox/mysql-fix

localhost -> 127.0.0.1 to work around bug where it complains about the directory not existing
This commit is contained in:
Zane C. Bowers-Hadley
2022-04-23 23:05:28 -05:00
committed by GitHub
+1 -1
View File
@@ -34,7 +34,7 @@ if (!array_key_exists('SCRIPT_FILENAME', $_SERVER)
$mysql_user = '';
$mysql_pass = '';
$mysql_host = 'localhost';
$mysql_host = '127.0.0.1';
$mysql_port = 3306;
$mysql_ssl = FALSE; # Whether to use SSL to connect to MySQL.
$mysql_ssl_key = '/etc/pki/tls/certs/mysql/client-key.pem';