1*c7da899bSchristos# Example of running an querying OpenSSL test OCSP responder. 2*c7da899bSchristos# This assumes "mkcerts.sh" or similar has been run to set up the 3*c7da899bSchristos# necessary file structure. 4*c7da899bSchristos 5*c7da899bSchristosOPENSSL=../../apps/openssl 6*c7da899bSchristosOPENSSL_CONF=../../apps/openssl.cnf 7*c7da899bSchristosexport OPENSSL_CONF 8*c7da899bSchristos 9*c7da899bSchristos# Run OCSP responder. 10*c7da899bSchristos 11*c7da899bSchristosPORT=8888 12*c7da899bSchristos 13*c7da899bSchristos$OPENSSL ocsp -port $PORT -index index.txt -CA intca.pem \ 14*c7da899bSchristos -rsigner resp.pem -rkey respkey.pem -rother intca.pem $* 15