-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Phil Hunt <[email protected]>
- Loading branch information
1 parent
0725e4c
commit beb9165
Showing
1 changed file
with
8 additions
and
11 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,13 @@ | ||
# Directory where keys will be stored. Note: docker-compose must be updated if changed | ||
HEXA_CERT_DIRECTORY="./.certs" | ||
export HEXA_CERT_DIRECTORY="./.certs" | ||
|
||
# if blank, a new key will be generated. Once generated, update the value to the new key file "ca-key.pem" | ||
HEXA_CERT_CA_KEY="ca-key.pem" # Set this if you already have a key | ||
|
||
export HEXA_CA_KEYFILE="ca-key.pem" # Set this if you already have a key | ||
export HEXA_CA_CERT="ca-cert.pem" | ||
# These values are only used if HEXA_CERTA_CA_KEY is empty and a new key is to be created | ||
HEXA_CERT_ORG="Hexa Testing" | ||
HEXA_CERT_COUNTRY="US" | ||
HEXA_CERT_PROV="CO" | ||
HEXA_CERT_LOCALITY="Boulder" | ||
|
||
HEXA_AUTO_SELFSIGN=true # set this value to false if auto-generation of certs is to be prevented (causes panic if keys not found) | ||
export HEXA_CERT_ORG="Hexa Testing" | ||
export HEXA_CERT_COUNTRY="US" | ||
export HEXA_CERT_PROV="CO" | ||
export HEXA_CERT_LOCALITY="Boulder" | ||
|
||
SERVER_CERT="./.certs/server-cert.pem" | ||
SERVER_KEY_PATH="./.certs/server-key.pem" | ||
export HEXA_AUTO_SELFSIGN=true # set this value to false if auto-generation of certs is to be prevented (causes panic if keys not found) |