hasura / ndc-jvm-mono

0 stars 2 forks source link

Support for SSL connection to MySQL server #10

Open nihxdr opened 1 month ago

nihxdr commented 1 month ago

Currently there is no option to provide a SSL client certificate, to establish a secure connection to MySQL server. At the moment, to connect to my MySQL server, I had to turn off the require_secure_transport server param to OFF and set useSSL param in JDBC URL string to false

GavinRay97 commented 1 month ago

Thanks for filing this.

I think in order for that to work, you'd need to mount certs into the container and set:

In the JDBC URL

This is important, and we need clear documentation on how to configure it.