Adding not in docs about connecting to dbs over SSL

This commit is contained in:
Maxime Beauchemin 2016-04-11 21:41:32 -07:00
parent 1dd416570a
commit 3d1fc99353
1 changed files with 16 additions and 0 deletions

View File

@ -197,6 +197,22 @@ JSON blob described above, or you can use a database user name to connect to
the database that matches the schema name you are interested it.
SSL Access to databases
-----------------------
This example worked with a MySQL database that requires SSL. The configuration
may differ with other backends. This is what was put in the ``extra``
parameter ::
{
"metadata_params": {},
"engine_params": {
"connect_args":{
"sslmode":"require",
"sslrootcert": "/path/to/my/pem"
}
}
}
Druid
-----