You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Robin Thoni 1a6c986b58 added TLS support for agents; added example CA and cert 5 years ago
frontend updated to stable 4.0.3 5 years ago
postgresql moved to library/debian:stretch; updated to zabbix 4.0 5 years ago
zabbix added TLS support for agents; added example CA and cert 5 years ago
.gitignore init 6 years ago
README.md added TLS support for agents; added example CA and cert 5 years ago
docker-compose.yml added restart policy in comments 6 years ago
env init 6 years ago
update_vars.sh init 6 years ago

README.md

Default username/password

Admin:zabbix

TLS

Generate CA

Generate CA key

openssl genrsa -passout env:CA_PASSWD -aes256 -out zabbix-ca.key 4096

Generate CA

openssl req -x509 -new -key zabbix-ca.key -sha256 -days 36500 -out zabbix-ca.crt -passin env:CA_PASSWD -subj “/CN=zabbix-server”

Generate host cert

Set host variable

HOST=zabbix-host.domain.tld

Generate host key and csr

openssl req -new -newkey rsa:4096 -nodes -keyout “${HOST}.key” -out “${HOST}.csr” -subj “/CN=${HOST}”

Generate host cert

openssl x509 -req -CA zabbix-ca.crt -CAkey zabbix-ca.key -CAcreateserial -days 36500 -sha256 -passin env:CA_PASSWD -in “${HOST}.csr” -out “${HOST}.crt”

Remove csr

rm “${HOST}.csr”