diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-05 09:54:54 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-08-05 09:54:54 +0000 |
commit | 3c0f5d5c50b9c280f7eb8da55dbf1ba0bbfa3691 (patch) | |
tree | 2dbbd8bdb6baa8e89092910f67c1930576495d71 /source | |
parent | Releasing progress-linux version 8.2404.0+dfsg-1~progress7.99u1. (diff) | |
download | rsyslog-doc-3c0f5d5c50b9c280f7eb8da55dbf1ba0bbfa3691.tar.xz rsyslog-doc-3c0f5d5c50b9c280f7eb8da55dbf1ba0bbfa3691.zip |
Merging upstream version 8.2406.0+dfsg.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'source')
-rw-r--r-- | source/conf.py | 4 | ||||
-rw-r--r-- | source/rainerscript/global.rst | 40 |
2 files changed, 37 insertions, 7 deletions
diff --git a/source/conf.py b/source/conf.py index 7a1de63..c3d3ea0 100644 --- a/source/conf.py +++ b/source/conf.py @@ -92,8 +92,8 @@ rst_epilog = """ # real values will be generated dynamically from info in the repo. If the # user builds the docs from "bare" sources not yet processed ############################################################################### -version = '8.2404' -release = '8.2404.0' +version = '8.2406' +release = '8.2406.0' #release = version + ' daily stable' # For this to be true, it means that we are not attempting to build from diff --git a/source/rainerscript/global.rst b/source/rainerscript/global.rst index a55f54a..b0bd334 100644 --- a/source/rainerscript/global.rst +++ b/source/rainerscript/global.rst @@ -69,12 +69,42 @@ The following parameters can be set: small parameters to prevent that from happening. **This parameter only has an effect if general debugging is enabled.** -- **netstreamDriverCaExtraFiles** +- **netstreamDriverCaExtraFiles** - This directive allows to configure multiple additional extra CA files. - This is intended for SSL certificate chains to work appropriately, - as the different CA files in the chain need to be specified. - It must be remarked that this parameter only works with the OpenSSL driver. + This directive allows to configure multiple additional extra CA files. + This is intended for SSL certificate chains to work appropriately, + as the different CA files in the chain need to be specified. + It must be remarked that this parameter only works with the OpenSSL driver. + +- **defaultopensslengine** available 8.2406.0+ + + This parameter is used to specify a custom OpenSSL engine by its ID. If the + engine is not specified, the system will use the default engine provided by OpenSSL. + + Note: Listing Available OpenSSL Engines + To determine the available OpenSSL engines on your system, use the following command: + + .. code-block:: bash + + openssl engine -t + + This command will output a list of available engines along with their IDs and descriptions. + Use the engine ID from this list as the value for the defaultopensslengine parameter. + + .. code-block:: text + + (rdrand) Intel RDRAND engine + (dynamic) Dynamic engine loading support + + Example configuration: + + .. code-block:: text + + global( + ... + defaultopensslengine="rdrand" + ... + ) - **processInternalMessages** binary (on/off) |