Is it possible to run an OCSP responder openssl ocsp -index ...
on an Apache/Nginx virtual host alongside other virtual hosts? So ocsp.example.com or pki.example.com/ocsp/
Asked
Active
Viewed 279 times
0
vince6e74
- 1
- 2
-
https://serverfault.com/q/131983/126632 – Michael Hampton Jul 19 '20 at 22:32
-
I did not mean how to configure the responder itself, but how to run the responder on an Apache server so that websites and web applications can be hosted on the same server. – vince6e74 Jul 19 '20 at 22:58
-
Not with `openssl ocsp`! That's the whole point. – Michael Hampton Jul 19 '20 at 23:08
-
OCSP requests are HTTP requests, and both Apache and nginx can (reverse-)proxy HTTP requests -- for a vhost, or certain URLs within one (e.g. your responder URLs) -- to another server either local or remote. Did you try the former? – dave_thompson_085 Jul 20 '20 at 05:50