Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mysql.hbs « partials « templates « src - github.com/mozilla/ssl-config-generator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7c2e9c2bf4ab6334155d8b4e2ae58dbe73a48539 (plain)
1
2
3
4
5
6
7
8
9
10
# {{output.header}}
# {{{output.link}}}
[mysqld]
require_secure_transport = on
ssl-cert = /path/to/signed_cert_plus_intermediates
ssl-key = /path/to/private_key
{{#if output.ciphers.length}}
ssl-cipher = {{{join output.ciphers ":"}}}
{{/if}}
tls_version = {{#each output.protocols}}{{this}}{{#unless @last}},{{/unless}}{{/each}}