mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2024-12-15 19:10:54 +01:00
Prepare to new Web configuration params support
This commit is contained in:
parent
6890f74ae3
commit
a0307d1af9
@ -16,6 +16,20 @@ $ZBX_SERVER = '{ZBX_SERVER_HOST}';
|
||||
$ZBX_SERVER_PORT = '{ZBX_SERVER_PORT}';
|
||||
$ZBX_SERVER_NAME = '{ZBX_SERVER_NAME}';
|
||||
|
||||
// Used for TLS connection.
|
||||
$DB['ENCRYPTION'] = {ZBX_DB_ENCRYPTION};
|
||||
$DB['KEY_FILE'] = '{ZBX_DB_KEY_FILE}';
|
||||
$DB['CERT_FILE'] = '{ZBX_DB_CERT_FILE}';
|
||||
$DB['CA_FILE'] = '{ZBX_DB_CA_FILE}';
|
||||
$DB['VERIFY_HOST'] = {ZBX_DB_VERIFY_HOST};
|
||||
$DB['CIPHER_LIST'] = '{ZBX_DB_CIPHER_LIST}';
|
||||
|
||||
// Use IEEE754 compatible value range for 64-bit Numeric (float) history values.
|
||||
// This option is enabled by default for new Zabbix installations.
|
||||
// For upgraded installations, please read database upgrade notes before enabling this option.
|
||||
$DB['DOUBLE_IEEE754'] = true;
|
||||
|
||||
|
||||
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
|
||||
|
||||
// Elasticsearch url (can be string if same url is used for all types).
|
||||
|
@ -16,6 +16,20 @@ $ZBX_SERVER = '{ZBX_SERVER_HOST}';
|
||||
$ZBX_SERVER_PORT = '{ZBX_SERVER_PORT}';
|
||||
$ZBX_SERVER_NAME = '{ZBX_SERVER_NAME}';
|
||||
|
||||
// Used for TLS connection.
|
||||
$DB['ENCRYPTION'] = {ZBX_DB_ENCRYPTION};
|
||||
$DB['KEY_FILE'] = '{ZBX_DB_KEY_FILE}';
|
||||
$DB['CERT_FILE'] = '{ZBX_DB_CERT_FILE}';
|
||||
$DB['CA_FILE'] = '{ZBX_DB_CA_FILE}';
|
||||
$DB['VERIFY_HOST'] = {ZBX_DB_VERIFY_HOST};
|
||||
$DB['CIPHER_LIST'] = '{ZBX_DB_CIPHER_LIST}';
|
||||
|
||||
// Use IEEE754 compatible value range for 64-bit Numeric (float) history values.
|
||||
// This option is enabled by default for new Zabbix installations.
|
||||
// For upgraded installations, please read database upgrade notes before enabling this option.
|
||||
$DB['DOUBLE_IEEE754'] = true;
|
||||
|
||||
|
||||
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
|
||||
|
||||
// Elasticsearch url (can be string if same url is used for all types).
|
||||
|
@ -16,6 +16,20 @@ $ZBX_SERVER = '{ZBX_SERVER_HOST}';
|
||||
$ZBX_SERVER_PORT = '{ZBX_SERVER_PORT}';
|
||||
$ZBX_SERVER_NAME = '{ZBX_SERVER_NAME}';
|
||||
|
||||
// Used for TLS connection.
|
||||
$DB['ENCRYPTION'] = {ZBX_DB_ENCRYPTION};
|
||||
$DB['KEY_FILE'] = '{ZBX_DB_KEY_FILE}';
|
||||
$DB['CERT_FILE'] = '{ZBX_DB_CERT_FILE}';
|
||||
$DB['CA_FILE'] = '{ZBX_DB_CA_FILE}';
|
||||
$DB['VERIFY_HOST'] = {ZBX_DB_VERIFY_HOST};
|
||||
$DB['CIPHER_LIST'] = '{ZBX_DB_CIPHER_LIST}';
|
||||
|
||||
// Use IEEE754 compatible value range for 64-bit Numeric (float) history values.
|
||||
// This option is enabled by default for new Zabbix installations.
|
||||
// For upgraded installations, please read database upgrade notes before enabling this option.
|
||||
$DB['DOUBLE_IEEE754'] = true;
|
||||
|
||||
|
||||
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
|
||||
|
||||
// Elasticsearch url (can be string if same url is used for all types).
|
||||
|
@ -2,7 +2,7 @@
|
||||
// Zabbix GUI configuration file.
|
||||
global $DB, $HISTORY;
|
||||
|
||||
$DB['TYPE'] = 'POSTGRESQL';
|
||||
$DB['TYPE'] = 'MYSQL';
|
||||
$DB['SERVER'] = '{DB_SERVER_HOST}';
|
||||
$DB['PORT'] = '{DB_SERVER_PORT}';
|
||||
$DB['DATABASE'] = '{DB_SERVER_DBNAME}';
|
||||
@ -16,6 +16,20 @@ $ZBX_SERVER = '{ZBX_SERVER_HOST}';
|
||||
$ZBX_SERVER_PORT = '{ZBX_SERVER_PORT}';
|
||||
$ZBX_SERVER_NAME = '{ZBX_SERVER_NAME}';
|
||||
|
||||
// Used for TLS connection.
|
||||
$DB['ENCRYPTION'] = {ZBX_DB_ENCRYPTION};
|
||||
$DB['KEY_FILE'] = '{ZBX_DB_KEY_FILE}';
|
||||
$DB['CERT_FILE'] = '{ZBX_DB_CERT_FILE}';
|
||||
$DB['CA_FILE'] = '{ZBX_DB_CA_FILE}';
|
||||
$DB['VERIFY_HOST'] = {ZBX_DB_VERIFY_HOST};
|
||||
$DB['CIPHER_LIST'] = '{ZBX_DB_CIPHER_LIST}';
|
||||
|
||||
// Use IEEE754 compatible value range for 64-bit Numeric (float) history values.
|
||||
// This option is enabled by default for new Zabbix installations.
|
||||
// For upgraded installations, please read database upgrade notes before enabling this option.
|
||||
$DB['DOUBLE_IEEE754'] = true;
|
||||
|
||||
|
||||
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
|
||||
|
||||
// Elasticsearch url (can be string if same url is used for all types).
|
||||
|
@ -2,7 +2,7 @@
|
||||
// Zabbix GUI configuration file.
|
||||
global $DB, $HISTORY;
|
||||
|
||||
$DB['TYPE'] = 'POSTGRESQL';
|
||||
$DB['TYPE'] = 'MYSQL';
|
||||
$DB['SERVER'] = '{DB_SERVER_HOST}';
|
||||
$DB['PORT'] = '{DB_SERVER_PORT}';
|
||||
$DB['DATABASE'] = '{DB_SERVER_DBNAME}';
|
||||
@ -16,6 +16,20 @@ $ZBX_SERVER = '{ZBX_SERVER_HOST}';
|
||||
$ZBX_SERVER_PORT = '{ZBX_SERVER_PORT}';
|
||||
$ZBX_SERVER_NAME = '{ZBX_SERVER_NAME}';
|
||||
|
||||
// Used for TLS connection.
|
||||
$DB['ENCRYPTION'] = {ZBX_DB_ENCRYPTION};
|
||||
$DB['KEY_FILE'] = '{ZBX_DB_KEY_FILE}';
|
||||
$DB['CERT_FILE'] = '{ZBX_DB_CERT_FILE}';
|
||||
$DB['CA_FILE'] = '{ZBX_DB_CA_FILE}';
|
||||
$DB['VERIFY_HOST'] = {ZBX_DB_VERIFY_HOST};
|
||||
$DB['CIPHER_LIST'] = '{ZBX_DB_CIPHER_LIST}';
|
||||
|
||||
// Use IEEE754 compatible value range for 64-bit Numeric (float) history values.
|
||||
// This option is enabled by default for new Zabbix installations.
|
||||
// For upgraded installations, please read database upgrade notes before enabling this option.
|
||||
$DB['DOUBLE_IEEE754'] = true;
|
||||
|
||||
|
||||
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
|
||||
|
||||
// Elasticsearch url (can be string if same url is used for all types).
|
||||
|
@ -16,6 +16,20 @@ $ZBX_SERVER = '{ZBX_SERVER_HOST}';
|
||||
$ZBX_SERVER_PORT = '{ZBX_SERVER_PORT}';
|
||||
$ZBX_SERVER_NAME = '{ZBX_SERVER_NAME}';
|
||||
|
||||
// Used for TLS connection.
|
||||
$DB['ENCRYPTION'] = {ZBX_DB_ENCRYPTION};
|
||||
$DB['KEY_FILE'] = '{ZBX_DB_KEY_FILE}';
|
||||
$DB['CERT_FILE'] = '{ZBX_DB_CERT_FILE}';
|
||||
$DB['CA_FILE'] = '{ZBX_DB_CA_FILE}';
|
||||
$DB['VERIFY_HOST'] = {ZBX_DB_VERIFY_HOST};
|
||||
$DB['CIPHER_LIST'] = '{ZBX_DB_CIPHER_LIST}';
|
||||
|
||||
// Use IEEE754 compatible value range for 64-bit Numeric (float) history values.
|
||||
// This option is enabled by default for new Zabbix installations.
|
||||
// For upgraded installations, please read database upgrade notes before enabling this option.
|
||||
$DB['DOUBLE_IEEE754'] = true;
|
||||
|
||||
|
||||
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
|
||||
|
||||
// Elasticsearch url (can be string if same url is used for all types).
|
||||
|
@ -16,6 +16,20 @@ $ZBX_SERVER = '{ZBX_SERVER_HOST}';
|
||||
$ZBX_SERVER_PORT = '{ZBX_SERVER_PORT}';
|
||||
$ZBX_SERVER_NAME = '{ZBX_SERVER_NAME}';
|
||||
|
||||
// Used for TLS connection.
|
||||
$DB['ENCRYPTION'] = {ZBX_DB_ENCRYPTION};
|
||||
$DB['KEY_FILE'] = '{ZBX_DB_KEY_FILE}';
|
||||
$DB['CERT_FILE'] = '{ZBX_DB_CERT_FILE}';
|
||||
$DB['CA_FILE'] = '{ZBX_DB_CA_FILE}';
|
||||
$DB['VERIFY_HOST'] = {ZBX_DB_VERIFY_HOST};
|
||||
$DB['CIPHER_LIST'] = '{ZBX_DB_CIPHER_LIST}';
|
||||
|
||||
// Use IEEE754 compatible value range for 64-bit Numeric (float) history values.
|
||||
// This option is enabled by default for new Zabbix installations.
|
||||
// For upgraded installations, please read database upgrade notes before enabling this option.
|
||||
$DB['DOUBLE_IEEE754'] = true;
|
||||
|
||||
|
||||
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
|
||||
|
||||
// Elasticsearch url (can be string if same url is used for all types).
|
||||
|
@ -16,6 +16,20 @@ $ZBX_SERVER = '{ZBX_SERVER_HOST}';
|
||||
$ZBX_SERVER_PORT = '{ZBX_SERVER_PORT}';
|
||||
$ZBX_SERVER_NAME = '{ZBX_SERVER_NAME}';
|
||||
|
||||
// Used for TLS connection.
|
||||
$DB['ENCRYPTION'] = {ZBX_DB_ENCRYPTION};
|
||||
$DB['KEY_FILE'] = '{ZBX_DB_KEY_FILE}';
|
||||
$DB['CERT_FILE'] = '{ZBX_DB_CERT_FILE}';
|
||||
$DB['CA_FILE'] = '{ZBX_DB_CA_FILE}';
|
||||
$DB['VERIFY_HOST'] = {ZBX_DB_VERIFY_HOST};
|
||||
$DB['CIPHER_LIST'] = '{ZBX_DB_CIPHER_LIST}';
|
||||
|
||||
// Use IEEE754 compatible value range for 64-bit Numeric (float) history values.
|
||||
// This option is enabled by default for new Zabbix installations.
|
||||
// For upgraded installations, please read database upgrade notes before enabling this option.
|
||||
$DB['DOUBLE_IEEE754'] = true;
|
||||
|
||||
|
||||
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
|
||||
|
||||
// Elasticsearch url (can be string if same url is used for all types).
|
||||
|
@ -16,6 +16,20 @@ $ZBX_SERVER = '{ZBX_SERVER_HOST}';
|
||||
$ZBX_SERVER_PORT = '{ZBX_SERVER_PORT}';
|
||||
$ZBX_SERVER_NAME = '{ZBX_SERVER_NAME}';
|
||||
|
||||
// Used for TLS connection.
|
||||
$DB['ENCRYPTION'] = {ZBX_DB_ENCRYPTION};
|
||||
$DB['KEY_FILE'] = '{ZBX_DB_KEY_FILE}';
|
||||
$DB['CERT_FILE'] = '{ZBX_DB_CERT_FILE}';
|
||||
$DB['CA_FILE'] = '{ZBX_DB_CA_FILE}';
|
||||
$DB['VERIFY_HOST'] = {ZBX_DB_VERIFY_HOST};
|
||||
$DB['CIPHER_LIST'] = '{ZBX_DB_CIPHER_LIST}';
|
||||
|
||||
// Use IEEE754 compatible value range for 64-bit Numeric (float) history values.
|
||||
// This option is enabled by default for new Zabbix installations.
|
||||
// For upgraded installations, please read database upgrade notes before enabling this option.
|
||||
$DB['DOUBLE_IEEE754'] = true;
|
||||
|
||||
|
||||
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
|
||||
|
||||
// Elasticsearch url (can be string if same url is used for all types).
|
||||
|
@ -2,7 +2,7 @@
|
||||
// Zabbix GUI configuration file.
|
||||
global $DB, $HISTORY;
|
||||
|
||||
$DB['TYPE'] = 'POSTGRESQL';
|
||||
$DB['TYPE'] = 'MYSQL';
|
||||
$DB['SERVER'] = '{DB_SERVER_HOST}';
|
||||
$DB['PORT'] = '{DB_SERVER_PORT}';
|
||||
$DB['DATABASE'] = '{DB_SERVER_DBNAME}';
|
||||
@ -16,6 +16,20 @@ $ZBX_SERVER = '{ZBX_SERVER_HOST}';
|
||||
$ZBX_SERVER_PORT = '{ZBX_SERVER_PORT}';
|
||||
$ZBX_SERVER_NAME = '{ZBX_SERVER_NAME}';
|
||||
|
||||
// Used for TLS connection.
|
||||
$DB['ENCRYPTION'] = {ZBX_DB_ENCRYPTION};
|
||||
$DB['KEY_FILE'] = '{ZBX_DB_KEY_FILE}';
|
||||
$DB['CERT_FILE'] = '{ZBX_DB_CERT_FILE}';
|
||||
$DB['CA_FILE'] = '{ZBX_DB_CA_FILE}';
|
||||
$DB['VERIFY_HOST'] = {ZBX_DB_VERIFY_HOST};
|
||||
$DB['CIPHER_LIST'] = '{ZBX_DB_CIPHER_LIST}';
|
||||
|
||||
// Use IEEE754 compatible value range for 64-bit Numeric (float) history values.
|
||||
// This option is enabled by default for new Zabbix installations.
|
||||
// For upgraded installations, please read database upgrade notes before enabling this option.
|
||||
$DB['DOUBLE_IEEE754'] = true;
|
||||
|
||||
|
||||
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
|
||||
|
||||
// Elasticsearch url (can be string if same url is used for all types).
|
||||
|
@ -2,7 +2,7 @@
|
||||
// Zabbix GUI configuration file.
|
||||
global $DB, $HISTORY;
|
||||
|
||||
$DB['TYPE'] = 'POSTGRESQL';
|
||||
$DB['TYPE'] = 'MYSQL';
|
||||
$DB['SERVER'] = '{DB_SERVER_HOST}';
|
||||
$DB['PORT'] = '{DB_SERVER_PORT}';
|
||||
$DB['DATABASE'] = '{DB_SERVER_DBNAME}';
|
||||
@ -16,6 +16,20 @@ $ZBX_SERVER = '{ZBX_SERVER_HOST}';
|
||||
$ZBX_SERVER_PORT = '{ZBX_SERVER_PORT}';
|
||||
$ZBX_SERVER_NAME = '{ZBX_SERVER_NAME}';
|
||||
|
||||
// Used for TLS connection.
|
||||
$DB['ENCRYPTION'] = {ZBX_DB_ENCRYPTION};
|
||||
$DB['KEY_FILE'] = '{ZBX_DB_KEY_FILE}';
|
||||
$DB['CERT_FILE'] = '{ZBX_DB_CERT_FILE}';
|
||||
$DB['CA_FILE'] = '{ZBX_DB_CA_FILE}';
|
||||
$DB['VERIFY_HOST'] = {ZBX_DB_VERIFY_HOST};
|
||||
$DB['CIPHER_LIST'] = '{ZBX_DB_CIPHER_LIST}';
|
||||
|
||||
// Use IEEE754 compatible value range for 64-bit Numeric (float) history values.
|
||||
// This option is enabled by default for new Zabbix installations.
|
||||
// For upgraded installations, please read database upgrade notes before enabling this option.
|
||||
$DB['DOUBLE_IEEE754'] = true;
|
||||
|
||||
|
||||
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
|
||||
|
||||
// Elasticsearch url (can be string if same url is used for all types).
|
||||
|
@ -16,6 +16,20 @@ $ZBX_SERVER = '{ZBX_SERVER_HOST}';
|
||||
$ZBX_SERVER_PORT = '{ZBX_SERVER_PORT}';
|
||||
$ZBX_SERVER_NAME = '{ZBX_SERVER_NAME}';
|
||||
|
||||
// Used for TLS connection.
|
||||
$DB['ENCRYPTION'] = {ZBX_DB_ENCRYPTION};
|
||||
$DB['KEY_FILE'] = '{ZBX_DB_KEY_FILE}';
|
||||
$DB['CERT_FILE'] = '{ZBX_DB_CERT_FILE}';
|
||||
$DB['CA_FILE'] = '{ZBX_DB_CA_FILE}';
|
||||
$DB['VERIFY_HOST'] = {ZBX_DB_VERIFY_HOST};
|
||||
$DB['CIPHER_LIST'] = '{ZBX_DB_CIPHER_LIST}';
|
||||
|
||||
// Use IEEE754 compatible value range for 64-bit Numeric (float) history values.
|
||||
// This option is enabled by default for new Zabbix installations.
|
||||
// For upgraded installations, please read database upgrade notes before enabling this option.
|
||||
$DB['DOUBLE_IEEE754'] = true;
|
||||
|
||||
|
||||
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
|
||||
|
||||
// Elasticsearch url (can be string if same url is used for all types).
|
||||
|
Loading…
Reference in New Issue
Block a user