Default pdo_mysql_ssl_verify to false

This commit is contained in:
the-djmaze 2022-03-10 12:41:41 +01:00
parent c725f9eebf
commit d4069fd835
2 changed files with 3 additions and 3 deletions

View file

@ -51,7 +51,7 @@ class ChangePasswordDriverPDO
\RainLoop\Plugins\Property::NewInstance('pdo_mysql_ssl_verify')->SetLabel('MySQL SSL verify server cert')
->SetType(\RainLoop\Enumerations\PluginPropertyType::BOOL)
->SetDescription('Verify that certificate\'s Common Name of SAN matches the database server\'s hostname.')
->SetDefaultValue(true),
->SetDefaultValue(false),
\RainLoop\Plugins\Property::NewInstance('pdo_mysql_ssl_ca')->SetLabel('MySQL SSL CA certificate file')
->SetDescription('Path to a file containing the CA certificate used to sign the server certificate, or a CA bundle. Required for SSL/TLS connections to work.')
->SetDefaultValue('/etc/pki/tls/certs/ca-bundle.crt')