HTTPS enabling

In order to enable HTTPS, you should perform the following steps:

  1. Prepare a server private key in PEM format and place it to the <data_volume>/conf/ssl/key.pem file.

  2. Prepare a certificate chain in PEM format and place it to the <data_volume>/conf/ssl/cert.pem file.

  3. Drop the current ADCM container and create it again with an SSL port.

$ docker rm adcm
$ docker create --name adcm -p 8000:8000 -p 8443:8443 -v /opt/adcm:/adcm/data hub.arenadata.io/adcm/adcm:latest
NOTE
  • Order of certs in the cert.pem file should be in sync with Nginx documentation.

  • Do not disable HTTP ports — they are still needed for interconnection between ADCM and hosts. We will fix this in the future.

Found a mistake? Seleсt text and press Ctrl+Enter to report it