mirror of https://github.com/Icinga/icinga2.git
Merge pull request #9759 from liip-forks/OdyX-sslcert_allow-setting-url
ssl_cert allow HTTP request URL setting
This commit is contained in:
commit
52a3604680
|
@ -5846,6 +5846,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"
|
||||
|
|
Loading…
Reference in New Issue