Hey,
I'm facing trouble while enabling the schedule report services.
The error log message;
2025/11/07 06:44:45.130685 http: TLS handshake error from 192.168.10.10:59184: tls: client didn't provide a certificate
Here are the settings;
/etc/nginx/conf.d/zabbix.conf
/etc/zabbix/zabbix_server.conf
/etc/zabbix/zabbix_web_service.conf
How can I solve that issue?
I'm facing trouble while enabling the schedule report services.
The error log message;
2025/11/07 06:44:45.130685 http: TLS handshake error from 192.168.10.10:59184: tls: client didn't provide a certificate
Here are the settings;
/etc/nginx/conf.d/zabbix.conf
HTML Code:
server {
listen 443 ssl;
server_name zabbix.domain.com;
ssl_certificate /etc/zabbix/ssl.pem;
ssl_certificate_key /etc/zabbix/key.pem;
root /usr/share/zabbix/ui;
index index.php;
....
....
HTML Code:
StartReportWriters=1 WebServiceURL=https://zabbix.domain.com:10053/report
HTML Code:
TLSAccept=cert TLSCAFile=/etc/zabbix/ssl.pem TLSCertFile=/etc/zabbix/ssl.pem TLSKeyFile=/etc/zabbix/key.pem IgnoreURLCertErrors=1
Comment