1
0
mirror of https://github.com/Icinga/icinga2.git synced 2025-04-08 17:05:25 +02:00

ssl_cert allow HTTP request URL setting

This is available in check_ssl_cert since 2021-02-18 Version 1.137.0
This commit is contained in:
Didier 'OdyX' Raboud 2023-05-08 17:00:45 +02:00
parent b4ce16c488
commit 0b8f65d562
No known key found for this signature in database
GPG Key ID: EA830BC6A684CD7C
2 changed files with 5 additions and 0 deletions

@ -5796,6 +5796,7 @@ ssl_cert_selfsigned | **Optional.** Allow self-signed certificate.
ssl_cert_sni | **Optional.** Sets the TLS SNI (Server Name Indication) extension.
ssl_cert_timeout | **Optional.** Seconds before connection times out (default: 15)
ssl_cert_protocol | **Optional.** Use the specific protocol {http,smtp,pop3,imap,ftp,xmpp,irc,ldap} (default: http).
ssl_cert_http_url | **Optional.** HTTP Request URL (default: /)
ssl_cert_clientcert | **Optional.** Use client certificate to authenticate.
ssl_cert_clientpass | **Optional.** Set passphrase for client certificate.
ssl_cert_ssllabs | **Optional.** SSL Labs assessment

@ -444,6 +444,10 @@ object CheckCommand "ssl_cert" {
value = "$ssl_cert_protocol$"
description = "Use the specific protocol {http|smtp|pop3|imap|ftp|xmpp|irc|ldap} (default: http)"
}
"--url" = {
value = "$ssl_cert_http_url$"
description = "HTTP request URL (default: /)"
}
"-C" = {
value = "$ssl_cert_clientssl_cert$"
description = "Use client certificate to authenticate"