Skip to content

Commit 950aa89

Browse files
committed
fix mariadb
1 parent 65ab581 commit 950aa89

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

articles/mariadb/howto-configure-ssl.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: ajlam
55
ms.author: andrela
66
ms.service: mariadb
77
ms.topic: conceptual
8-
ms.date: 4/21/2020
8+
ms.date: 5/7/2020
99
---
1010
# Configure SSL connectivity in your application to securely connect to Azure Database for MariaDB
1111
Azure Database for MariaDB supports connecting your Azure Database for MariaDB server to client applications using Secure Sockets Layer (SSL). Enforcing SSL connections between your database server and your client applications helps protect against "man in the middle" attacks by encrypting the data stream between the server and your application.
@@ -86,7 +86,7 @@ conn = pymysql.connect(user='myadmin@mydemoserver',
8686
password='yourpassword',
8787
database='quickstartdb',
8888
host='mydemoserver.mariadb.database.azure.com',
89-
ssl={'ssl': {'ca': '/var/www/html/BaltimoreCyberTrustRoot.crt.pem'}})
89+
ssl={'ca': '/var/www/html/BaltimoreCyberTrustRoot.crt.pem'})
9090
```
9191

9292
### Ruby

articles/mysql/howto-configure-ssl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: ajlam
55
ms.author: andrela
66
ms.service: mysql
77
ms.topic: conceptual
8-
ms.date: 4/21/2020
8+
ms.date: 5/7/2020
99
---
1010
# Configure SSL connectivity in your application to securely connect to Azure Database for MySQL
1111
Azure Database for MySQL supports connecting your Azure Database for MySQL server to client applications using Secure Sockets Layer (SSL). Enforcing SSL connections between your database server and your client applications helps protect against "man in the middle" attacks by encrypting the data stream between the server and your application.

0 commit comments

Comments
 (0)