Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Install the signed Certificate in the Platform

...

Add or update the following keys in the Platform configuration file:

Code Block
server:
  dtlsConfig:
    dtlsCertDir: "./config" # This way the configuration directory is used to lookup the key and cert.
    dtlsCertName: "platform" # Used to lookup "platform.cert" and "platform.key"
featureToggle:
  dtlsSecureCoapServiceEnabled: true


Warning

Make sure your backups are either secure or do not backup the platform.key file.


In case you choose another location than "./config" the docker-compose.yml must be updated to mount the dtlsCertDir:

Code Block
services:
  lobaro-backend:
    volumes:
      - </host/path/to/cert-dir>:<dtlsCertDir>