Configure iOS signing certificate

When enrolling Apple devices, Relution delivers a signing certificate in the basic configuration that is not trusted and has expired. This is not a functional problem, but can be fixed by changing the configuration. To be found on the end device under SettingsGeneralVPN & Device ManagementMDM ProfileSigning Certificate

SIGNING CERTIFICATE
scep-WIN2008SCEP-CA
Issued by: scep-WIN2008SCEP-CA
Expires: October 28, 2015

Adjust configuration

The certificate can be changed. In this case, the following section must be added to the application.yml:

relution:
  signer:
    certificatePath: "PATH TO YOUR CERTIFICATE"
    keyPath: "PATH TO YOUR KEY"

Relution always expects the files in /opt/relution. When specifying the two paths, only the filename of the certificate needs to be given, provided it is stored in /opt/relution.

In this example, both the certificate and the corresponding key must be stored under the appropriate path.


Docker environment

If Relution is operated in Docker, the certificates must still be mounted in the corresponding container:

services:
  relution:
    volumes:
      - "./application.yml:/opt/relution/application.yml"
      - "./server.pem:/opt/relution/server.pem"
      - "./server.key:/opt/relution/server.key"

The volume application.yml only needs to be added if there is no such file already.

Top