2013-10-25 16:54:25 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2020-03-06 23:58:11 +01:00
|
|
|
# NOTE: You may need to replace 'localhost' with your OCSP server hostname.
|
2013-10-25 16:54:25 +02:00
|
|
|
openssl ocsp \
|
|
|
|
-no_nonce \
|
|
|
|
-CAfile ca.pem \
|
|
|
|
-verify_other demoCA/cacert.pem \
|
|
|
|
-issuer demoCA/cacert.pem \
|
|
|
|
-cert server.pem \
|
|
|
|
-url http://localhost:8888/ \
|
|
|
|
-respout ocsp-server-cache.der
|