To configure a connector or Connector Framework Server to accept data sent to its ACI port over SSL, follow these steps.
To configure an incoming SSL Connection
[Server]
section set the SSLConfig
parameter to specify the name of a section in the configuration file for the SSL settings. For example:[Server] SSLConfig=SSLOptions
Create a new section in the configuration file (the name must match the name you used in the SSLConfig
parameter). Then, use the SSL configuration parameters to specify the details for the connection. You must set the following parameters:
SSLMethod
|
The SSL protocol to use. |
SSLCertificate
|
The SSL certificate to use (in PEM format). |
SSLPrivateKey
|
The private key for the SSL certificate (in PEM format). |
For example:
[SSLOptions] SSLMethod=SSLV23 SSLCertificate=host1.crt SSLPrivateKey=host1.key
|