templating a couple of values
This commit is contained in:
parent
b086096fdd
commit
42d6952f2b
1 changed files with 6 additions and 2 deletions
|
@ -30,8 +30,12 @@ $DB['VAULT_TOKEN'] = '';
|
|||
$DB['DOUBLE_IEEE754'] = true;
|
||||
|
||||
// Uncomment and set to desired values to override Zabbix hostname/IP and port.
|
||||
// $ZBX_SERVER = '{{ zabbix_server_hostname }}';
|
||||
// $ZBX_SERVER_PORT = '{{ zabbix_server_listen_port }}';
|
||||
{% if zabbix_server_hostname is defined %}
|
||||
$ZBX_SERVER = '{{ zabbix_server_hostname }}';
|
||||
{% endif %}
|
||||
{% if zabbix_server_listen_port is defined %}
|
||||
$ZBX_SERVER_PORT = '{{ zabbix_server_listen_port }}'
|
||||
{% endif %}
|
||||
|
||||
$ZBX_SERVER_NAME = '{{ zabbix_server_name }}';
|
||||
|
||||
|
|
Loading…
Reference in a new issue