87998f80e7
By default, 'openssl ocsp' exits upon receiving a malformed request. That's not really ideal for a server, so configure openssl to not do that and instead, continue running to process other requests. Signed-off-by: Jouni Malinen <j@w1.fi>
3 lines
140 B
Bash
Executable file
3 lines
140 B
Bash
Executable file
#!/bin/sh
|
|
|
|
openssl ocsp -index demoCA/index.txt -port 8888 -nmin 5 -rsigner ocsp.pem -rkey ocsp.key -CA demoCA/cacert.pem -text -ignore_err
|