Skip to content

Commit 7df4b6e

Browse files
authored
Merge pull request #114310 from ajlam/sslfix
fix MicrosoftDocs/azure-docs#52970
2 parents 1f4bf84 + 950aa89 commit 7df4b6e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
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: 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: 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.
@@ -98,7 +98,7 @@ conn = pymysql.connect(user='myadmin@mydemoserver',
9898
password='yourpassword',
9999
database='quickstartdb',
100100
host='mydemoserver.mysql.database.azure.com',
101-
ssl={'ssl': {'ca': '/var/www/html/BaltimoreCyberTrustRoot.crt.pem'}})
101+
ssl={'ca': '/var/www/html/BaltimoreCyberTrustRoot.crt.pem'})
102102
```
103103

104104
### Django (PyMySQL)

0 commit comments

Comments
 (0)