c7beea2032
This change moves the LDAP cert installation into a common script and reorganizes the startup scripts for creating and installing these certs Fixes #1846
8 lines
296 B
Bash
Executable file
8 lines
296 B
Bash
Executable file
#! /bin/bash
|
|
set -e
|
|
|
|
# Create certs for jwtproxy to mitm outgoing TLS connections
|
|
echo '{"CN":"CA","key":{"algo":"rsa","size":2048}}' | cfssl gencert -initca - | cfssljson -bare mitm
|
|
cp mitm-key.pem /conf/mitm.key
|
|
cp mitm.pem /conf/mitm.cert
|
|
cp mitm.pem /usr/local/share/ca-certificates/mitm.crt
|