mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2025-01-10 15:48:38 +01:00
70 lines
2.0 KiB
Plaintext
70 lines
2.0 KiB
Plaintext
####### TLS-RELATED PARAMETERS #######
|
|
|
|
### Option: DBTLSConnect
|
|
# Setting this option enforces to use TLS connection to database.
|
|
# required - connect using TLS
|
|
# verify_ca - connect using TLS and verify certificate
|
|
# verify_full - connect using TLS, verify certificate and verify that database identity specified by DBHost
|
|
# matches its certificate
|
|
# On MySQL starting from 5.7.11 and PostgreSQL following values are supported: "required", "verify_ca" and
|
|
# "verify_full".
|
|
# On MariaDB starting from version 10.2.6 "required" and "verify_full" values are supported.
|
|
# Default is not to set any option and behavior depends on database configuration
|
|
#
|
|
# Mandatory: no
|
|
# Default:
|
|
# DBTLSConnect=
|
|
|
|
DBTLSConnect=${ZBX_DBTLSCONNECT}
|
|
|
|
### Option: DBTLSCAFile
|
|
# Full pathname of a file containing the top-level CA(s) certificates for database certificate verification.
|
|
# Supported only for MySQL and PostgreSQL
|
|
#
|
|
# Mandatory: no
|
|
# (yes, if DBTLSConnect set to one of: verify_ca, verify_full)
|
|
# Default:
|
|
# DBTLSCAFile=
|
|
|
|
DBTLSCAFile=${ZBX_DBTLSCAFILE}
|
|
|
|
### Option: DBTLSCertFile
|
|
# Full pathname of file containing Zabbix proxy certificate for authenticating to database.
|
|
# Supported only for MySQL and PostgreSQL
|
|
#
|
|
# Mandatory: no
|
|
# Default:
|
|
# DBTLSCertFile=
|
|
|
|
DBTLSCertFile=${ZBX_DBTLSCERTFILE}
|
|
|
|
### Option: DBTLSKeyFile
|
|
# Full pathname of file containing the private key for authenticating to database.
|
|
# Supported only for MySQL and PostgreSQL
|
|
#
|
|
# Mandatory: no
|
|
# Default:
|
|
# DBTLSKeyFile=
|
|
|
|
DBTLSKeyFile=${ZBX_DBTLSKEYFILE}
|
|
|
|
### Option: DBTLSCipher
|
|
# The list of encryption ciphers that Zabbix proxy permits for TLS protocols up through TLSv1.2
|
|
# Supported only for MySQL
|
|
#
|
|
# Mandatory no
|
|
# Default:
|
|
# DBTLSCipher=
|
|
|
|
DBTLSCipher=${ZBX_DBTLSCIPHER}
|
|
|
|
### Option: DBTLSCipher13
|
|
# The list of encryption ciphersuites that Zabbix proxy permits for TLSv1.3 protocol
|
|
# Supported only for MySQL, starting from version 8.0.16
|
|
#
|
|
# Mandatory no
|
|
# Default:
|
|
# DBTLSCipher13=
|
|
|
|
DBTLSCipher13=${ZBX_DBTLSCIPHER13}
|