Configure passbolt using ssl connection to mysql server

we are using passbolt. the problem is our db is on different server of where passbolt installed.
our db is mysql and the connection is via ssl.

we using the following command to connect to our db, but there is no option for setting up passbolt to use mysql ssl connection.
mysql --ssl-cert=client.pem --ssl-key=client-key.pem -h -u -p

Please advise.

1 Like

Hi Ming,

Please have a look at: https://book.cakephp.org/2.0/en/development/configuration.html
You can see in the configuration options:

  • ssl_key: The file path to the SSL key file. (Only supported by MySQL, requires PHP 5.3.7+).
  • ssl_cert: The file path to the SSL certificate file. (Only supported by MySQL, requires PHP 5.3.7+).
  • ssl_ca: The file path to the SSL certificate authority. (Only supported by MySQL, requires PHP 5.3.7+).

Try playing with these options to see if it works for you.

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.