mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
update flag documentation (#1280)
updates documentation to account for changes introduced in #1266
This commit is contained in:
parent
2f6a09f858
commit
8d4d6fa486
1 changed files with 6 additions and 6 deletions
|
|
@ -169,20 +169,20 @@ The path to a PEM encoded certificate of MYSQL's CA for client certificate authe
|
||||||
|
|
||||||
```
|
```
|
||||||
mysql:
|
mysql:
|
||||||
ca: /path/to/server-ca.pem
|
tls_ca: /path/to/server-ca.pem
|
||||||
```
|
```
|
||||||
|
|
||||||
##### `mysql_tls_certificate`
|
##### `mysql_tls_cert`
|
||||||
|
|
||||||
The path to a PEM encoded certificate use for tls authentication.
|
The path to a PEM encoded certificate use for tls authentication.
|
||||||
|
|
||||||
- Default value: none
|
- Default value: none
|
||||||
- Environment variable: `KOLIDE_MYSQL_TLS_CERTIFICATE`
|
- Environment variable: `KOLIDE_MYSQL_TLS_CERT`
|
||||||
- Config file format:
|
- Config file format:
|
||||||
|
|
||||||
```
|
```
|
||||||
mysql:
|
mysql:
|
||||||
cert: /path/to/certificate.pem
|
tls_cert: /path/to/certificate.pem
|
||||||
```
|
```
|
||||||
|
|
||||||
##### `mysql_tls_key`
|
##### `mysql_tls_key`
|
||||||
|
|
@ -195,7 +195,7 @@ The path to a PEM encoded private key use for tls authentication.
|
||||||
|
|
||||||
```
|
```
|
||||||
mysql:
|
mysql:
|
||||||
key: /path/to/key.pem
|
tls_key: /path/to/key.pem
|
||||||
```
|
```
|
||||||
|
|
||||||
##### `mysql_tls_config`
|
##### `mysql_tls_config`
|
||||||
|
|
@ -208,7 +208,7 @@ The tls value in a MYSQL DSN. Can be `true`,`false`,`skip-verify` or the CN valu
|
||||||
|
|
||||||
```
|
```
|
||||||
mysql:
|
mysql:
|
||||||
tlsconfig: true
|
tls_config: true
|
||||||
```
|
```
|
||||||
|
|
||||||
##### `mysql_tls_server_name`
|
##### `mysql_tls_server_name`
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue