Skip to content

Configuring SSL Server Certificate

Obtaining the SSL Certificate

Obtain the SSL certificate from a certificate provider, using the IIS certificate format (PFX).

Copying the SSL Certificate

Copy the SSL certificate to the specified directory on the server. For example, copy the certificate to the ${CHINLINK_HOME}/certs directory.

Modifying application.yml

Edit the ${CHINLINK_HOME}/application.yml file to add the SSL certificate configuration. For example:

yaml
server:  
  ssl:  
    # Certificate path  
    key-store: certs/your_cert.pfx  
    # Certificate password  
    key-store-password: your_cert_password  
    key-store-type: PKCS12  
    # If the certificate contains multiple certificates, use the following configuration  
    key-alias: your_cert_alias

Restarting the Service

Restart the Chinlink Data Integration Platform service to apply the SSL certificate.