LiveWire uses the NGINX web server to support OCSP. Enabling the feature requires modifying an NGINX configuration file.
To enable OCSP support, perform the following steps:
- Connect to LiveWire and start an `ssh` session.
ssh admin@Omnipeek - Modify the NGINX configuration.
LiveWire uses the NGINX web server to support OCSP. Enabling the feature requires modifying an NGINX configuration file.
sudo nano /etc/nginx/sites-available/omni-client-auth - Once the editor is loaded, add the following lines immediately under the
ssl_verify_client on; directive near the end of the file and save the file. This enables the
use of OCSP:
ssl_ocsp leaf; resolver 8.8.8.8;Note: The IP address given by the `resolver` directive (in this example, a Google DNS server) must be the IP address of any DNS server capable of resolving the host names placed in each certificate's OCSP extension. - Restart the NGINX service. The new settings will not take effect until NGINX is
restarted.
sudo systemctl restart nginx