Use the following procedure to configure SSL in a setup where you configure the DAH in the unified IDOL Server configuration file.
Open the IDOL Server configuration file in a text editor.
Find the [Server]
section, the [IDOLServerN]
or [DAHEngineN]
section, or a combination of the [Server]
section and one of the others.
Add the SSLConfig
setting to specify the section in which you have set the SSL details for the connection, usually SSLOptionN
. For example:
[Server] (other server settings...) SSLConfig=SSLOption0 [IDOLServer0] SSLConfig=SSLOption0 [IDOLServer1] SSLConfig=SSLOption1
In this example, incoming ACI calls and outgoing calls to IDOLServer0
share the same SSL configuration, and outgoing calls to IDOLServer1
use a different configuration.
Create an [SSLOptionN]
section for each unique SSLConfig
setting. Each SSLOption
entry must contain the SSLMethod
, SSLCertificate
, and SSLPrivateKey
parameters. For example:
[SSLOption0] SSLMethod=SSLV23 SSLCertificate=host1.crt SSLPrivateKey=host1.key [SSLOption1] SSLMethod=SSLV23 SSLCertificate=host2.crt SSLPrivateKey=host2.key
Save and close the configuration file. Restart the IDOL Server for your changes to take effect.
|