Self-signed SSL certificates
This page explains how to make Aidbox respect self-signed SSL certificates
Problem
Sometimes it is necessary to make Aidbox respect self-signed certificates. For example, an identity provider may use a custom self-signed certificate and Aidbox receives SSL signature errors when sending HTTP requests to it.
Solution
To make Aidbox respect these certificates, you need to load the root certificates into the Aidbox docker image and make Java (JRE) respect them as well.
How to install custom SSL into Aidbox docker image
To install self-signed SSLs into Adibox docker image, you show build your own one. That image should
Inherit the required Aidbox docker image
Load necessary certificates to the image
Install the certs into operation system and Java runtime
Build docker image
To build your custom Aidbox docker image use the docker build command.
For example, the build command could look like this
Last updated