allow setting certs location so mounted cert folder doesnt need to match expected names (#38)

pull/66/head
Jye Lee 2020-11-14 00:57:54 -08:00 committed by GitHub
parent 3bb9f15061
commit 8bfb0a9ef6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -25,9 +25,9 @@ CN_WEB=${CN_WEB:0:64}
mkdir -p /certs /ca mkdir -p /certs /ca
cd /ca cd /ca
CA_KEY_FILE=/ca/ca.key CA_KEY_FILE=${CA_KEY_FILE:-/ca/ca.key}
CA_CRT_FILE=/ca/ca.crt CA_CRT_FILE=${CA_CRT_FILE:-/ca/ca.crt}
CA_SRL_FILE=/ca/ca.srl CA_SRL_FILE=${CA_SRL_FILE:-/ca/ca.srl}
if [ -f "$CA_CRT_FILE" ] ; then if [ -f "$CA_CRT_FILE" ] ; then
logInfo "CA already exists. Good. We'll reuse it." logInfo "CA already exists. Good. We'll reuse it."
@ -121,4 +121,4 @@ logInfo "Concatenating fullchain.pem..."
cat web.crt ia.crt ${CA_CRT_FILE} > fullchain.pem cat web.crt ia.crt ${CA_CRT_FILE} > fullchain.pem
logInfo "Concatenating fullchain_with_key.pem" logInfo "Concatenating fullchain_with_key.pem"
cat fullchain.pem web.key > fullchain_with_key.pem cat fullchain.pem web.key > fullchain_with_key.pem