Hi - trying to set up a dev/private admin site on azure so I can eventually move from the VM to a webapp. The default setting for connecting to mysql addin (cleardb) want apps to connect using an ssl certificate along with name/pw etc.
example they give is:
$db = mysqli_init(); $db->ssl_set(PATH_TO_SSL_CLIENT_KEY_FILE, PATH_TO_SSL_CLIENT_CERT_FILE, PATH_TO_CA_CERT_FILE, null, null); $db->real_connect(HOSTNAME, USERNAME, PASSWORD, DATABASE_NAME);
does the config file support this or do I need to edit the connection class?
Thanks in advance
example they give is:
$db = mysqli_init(); $db->ssl_set(PATH_TO_SSL_CLIENT_KEY_FILE, PATH_TO_SSL_CLIENT_CERT_FILE, PATH_TO_CA_CERT_FILE, null, null); $db->real_connect(HOSTNAME, USERNAME, PASSWORD, DATABASE_NAME);
does the config file support this or do I need to edit the connection class?
Thanks in advance