fix: update subject in server certificate generation to use the full subject name

This commit is contained in:
2026-03-03 13:23:33 +01:00
parent fb7ec2ac9e
commit 6822c65a7a

View File

@@ -103,7 +103,7 @@ function make_server_cert() {
-newkey rsa:4096 \
-keyout "$CERT_DIR/${CERT_NAME}_key.pem" \
-nodes \
-subj "/CN=${CERT_NAME}.blob.core.windows.net" \
-subj "/CN=${CERT_SUBJECT_NAME}" \
-addext "basicConstraints=critical,CA:FALSE" \
-addext "keyUsage=digitalSignature,keyEncipherment" \
-addext "extendedKeyUsage=serverAuth,clientAuth" \