We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04ff1c7 commit b79c987Copy full SHA for b79c987
1 file changed
ocsp/responder/nginx-scgi/run.sh
@@ -92,12 +92,12 @@ echo ""
92
# --- Step 1: Start wolfclu OCSP responder in SCGI mode ---
93
echo "Starting wolfclu OCSP responder (SCGI on port $SCGI_PORT)..."
94
95
-WOLFCLU_ARGS="-scgi -port $SCGI_PORT -rsigner $CA_CERT -rkey $CA_KEY -CA $CA_CERT"
+set -- -scgi -port "$SCGI_PORT" -rsigner "$CA_CERT" -rkey "$CA_KEY" -CA "$CA_CERT"
96
if [ -n "$INDEX_FILE" ]; then
97
- WOLFCLU_ARGS="$WOLFCLU_ARGS -index $INDEX_FILE"
+ set -- "$@" -index "$INDEX_FILE"
98
fi
99
100
-wolfssl ocsp $WOLFCLU_ARGS &
+wolfssl ocsp "$@" &
101
WOLFCLU_PID=$!
102
sleep 1
103
0 commit comments