mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2025-01-10 15:48:38 +01:00
60 lines
1.6 KiB
Plaintext
60 lines
1.6 KiB
Plaintext
### Option: EnableRemoteCommands
|
|
# Whether remote commands from Zabbix server are allowed.
|
|
# 0 - not allowed
|
|
# 1 - allowed
|
|
#
|
|
# Mandatory: no
|
|
# Default:
|
|
# EnableRemoteCommands=0
|
|
|
|
EnableRemoteCommands=${ZBX_ENABLEREMOTECOMMANDS}
|
|
|
|
### Option: LogRemoteCommands
|
|
# Enable logging of executed shell commands as warnings.
|
|
# 0 - disabled
|
|
# 1 - enabled
|
|
#
|
|
# Mandatory: no
|
|
# Default:
|
|
# LogRemoteCommands=0
|
|
|
|
LogRemoteCommands=${ZBX_LOGREMOTECOMMANDS}
|
|
|
|
### Option: AllowRoot
|
|
# Allow the proxy to run as 'root'. If disabled and the proxy is started by 'root', the proxy
|
|
# will try to switch to the user specified by the User configuration option instead.
|
|
# Has no effect if started under a regular user.
|
|
# 0 - do not allow
|
|
# 1 - allow
|
|
#
|
|
# Mandatory: no
|
|
# Default:
|
|
# AllowRoot=0
|
|
|
|
AllowRoot=${ZBX_ALLOWROOT}
|
|
|
|
### Option: User
|
|
# Drop privileges to a specific, existing user on the system.
|
|
# Only has effect if run as 'root' and AllowRoot is disabled.
|
|
#
|
|
# Mandatory: no
|
|
# Default:
|
|
# User=zabbix
|
|
|
|
User=${ZBX_USER}
|
|
|
|
### Option: StatsAllowedIP
|
|
# List of comma delimited IP addresses, optionally in CIDR notation, or DNS names of external Zabbix instances.
|
|
# Stats request will be accepted only from the addresses listed here. If this parameter is not set no stats requests
|
|
# will be accepted.
|
|
# If IPv6 support is enabled then '127.0.0.1', '::127.0.0.1', '::ffff:127.0.0.1' are treated equally
|
|
# and '::/0' will allow any IPv4 or IPv6 address.
|
|
# '0.0.0.0/0' can be used to allow any IPv4 address.
|
|
# Example: StatsAllowedIP=127.0.0.1,192.168.1.0/24,::1,2001:db8::/32,zabbix.example.com
|
|
#
|
|
# Mandatory: no
|
|
# Default:
|
|
# StatsAllowedIP=
|
|
|
|
StatsAllowedIP=${ZBX_STATSALLOWEDIP}
|