Dmitry Shmidt | df5a7e4 | 2014-04-02 12:59:59 -0700 | [diff] [blame] | 1 | #!/bin/sh |
2 | |||||
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 3 | # NOTE: You may need to replace 'localhost' with your OCSP server hostname. |
Dmitry Shmidt | df5a7e4 | 2014-04-02 12:59:59 -0700 | [diff] [blame] | 4 | openssl 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 |