Skip to content

Commit

Permalink
Issue #38, Updated .env variables
Browse files Browse the repository at this point in the history
Signed-off-by: Phil Hunt <[email protected]>
  • Loading branch information
independentid committed Jun 25, 2024
1 parent 0725e4c commit beb9165
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions .env
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)

0 comments on commit beb9165

Please sign in to comment.