- One instance certificate
- Certificate file in text format
- Certificate private key file
- Intermediate certificate in text format
Last active
October 15, 2021 15:11
-
-
Save cruepprich/659ef637f403769aef4eb3086d5bd12b to your computer and use it in GitHub Desktop.
[ORDS Standalone: Configure SSL Certificate Chain] Process for installing an SSL certificate chain in ORDS running in Standalone mode. #ords
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Set variables | |
PASSWORD="MySecret123" | |
HOSTNAME="myhost.domain.com" | |
KEY="my_certificate.key" #provided by certificate authority | |
IDENTITY_CRT="my_certificate.crt" #provided by certificate authority | |
INTERMEDIATE_CRT="my_intermediate_certificate.crt" #provided by certificate authority | |
# Write a passwordfile | |
echo "${PASSWORD}" > passfile | |
# Concatenate the identity and intermediate certificates. Order matters! | |
cat ${IDENTITY_CRT} ${INTERMEDIATE_CRT} > ${HOSTNAME}.chain.crt | |
# Combine certificates and private key into a .p12 file. | |
openssl pkcs12 \ | |
-export \ | |
-inkey ${KEY} \ | |
-in ${HOSTNAME}.chain.crt \ | |
-out ${HOSTNAME}.chain.p12 \ | |
-password pass:${PASSWORD} | |
# Convert certificate key to DER format for ORDS | |
openssl pkcs8 \ | |
-topk8 \ | |
-inform P12 \ | |
-outform DER \ | |
-in ${HOSTNAME}.chain.p12 \ | |
-out ${HOSTNAME}_key.der \ | |
-nocrypt \ | |
-passin file:passfile | |
# Remove passfile | |
rm passfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SSL Configuration | |
jetty.secure.port=443 | |
ssl.cert=/path/to/myhost.domain.com.chain.crt | |
ssl.cert.key=/path/to/myhost.domain.com_key.der | |
ssl.host=myhost.domain.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openssl s_client -showcerts -connect myhost.domain.com:443 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment