update: make CA_DIR, CA_NAME, and STORAGE_ACCOUNT_NAME configurable

This commit is contained in:
2026-03-24 07:38:36 +01:00
parent 4f1d78f174
commit 8fdbce7fb4

View File

@@ -5,9 +5,9 @@
# For more sophisticated certificate management, consider using Simple CA project # For more sophisticated certificate management, consider using Simple CA project
# from: https://gitea.koszewscy.waw.pl/slawek/simple-ca.git # from: https://gitea.koszewscy.waw.pl/slawek/simple-ca.git
CA_DIR="./ca" CA_DIR="${CA_DIR:-./ca}"
CA_NAME="Azurite Emulator CA" CA_NAME="${CA_NAME:-Azurite Emulator CA}"
STORAGE_ACCOUNT_NAME="azuritelocal" STORAGE_ACCOUNT_NAME="${STORAGE_ACCOUNT_NAME:-azuritelocal}"
openssl req \ openssl req \
-x509 -noenc -text \ -x509 -noenc -text \
-newkey rsa:4096 \ -newkey rsa:4096 \