diff --git a/doc/configuration.txt b/doc/configuration.txt index 3bc667a70..59ffcf74e 100644 --- a/doc/configuration.txt +++ b/doc/configuration.txt @@ -1185,6 +1185,21 @@ The list of currently supported predicates is the following: in the features list reported by "haproxy -vv" (which means a appears after a '+') + - openssl_version_atleast() : returns true if the current openssl + version is at least as recent as otherwise + false. + Libraries like LibreSSL, AWS-LC and WolfSSL also + provide a pseudo OpenSSL version. + Example: + ssllib_name_startswith(OpenSSL) && openssl_version_atleast(1.1.1) + + - openssl_version_before() : returns true if the current openssl + version is strictly older than otherwise + false. + Libraries like LibreSSL, AWS-LC and WolfSSL also + provide a pseudo OpenSSL version. + Example: openssl_version_before(3.5.0) + - ssllib_name_startswith() : return true if the SSL library name HAProxy was linked with, starts with . Example: ssllib_name_startswith(wolfSSL)