1#!/bin/sh
2
3# NOTE: You may need to replace 'localhost' with your OCSP server hostname.
4openssl ocsp \
5	-no_nonce \
6	-CAfile ca.pem \
7	-verify_other demoCA/cacert.pem \
8	-issuer demoCA/cacert.pem \
9	-cert server.pem \
10	-url http://localhost:8888/ \
11	-respout ocsp-server-cache.der
12