File: mysql-tls-support-88941e2ebaf938b4.yaml

package info (click to toggle)
python-tooz 6.3.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 840 kB
  • sloc: python: 5,530; sh: 158; makefile: 27
file content (33 lines) | stat: -rw-r--r-- 873 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
---
features:
  - |
    Added TLS support for MySQL driver.

    The following TLS-related options now can be specifed in the MySQL
    connection URL as query parameters

    ``ssl_ca``
      path to the CA bundle to use for verifying server certificate

    ``ssl_capath``
      path to folder with CA bundle files

    ``ssl_cert``
      path to client public key certificate file

    ``ssl_key``
      path to client private key file

    ``ssl_check_hostname``
      verify server hostname against its certificate,
      accepted values are "true", "1", "yes" or "false", "0", "no"
      (default is "true")

    ``ssl_verify_mode``
      whether to verify TLS connection
      accepted values are "true", "1", "yes", "required" or
      "false", "0", "no", "none", or
      "optional"

    ``ssl_cipher``
       list of permissible ciphers for connection encryption