Differences

This shows you the differences between two versions of the page.

Link to this comparison view

apache:fix-error-ocsp-try-server-later-in-firefox [2016-12-15 21:32:12] (current)
rory.blanchard created
Line 1: Line 1:
 +====== How to Fix the SEC_ERROR_OCSP_TRY_SERVER_LATER in Firefox ======
  
 +On a new cPanel server using SSL, occasionally you may see the following error:
 +
 +<code>
 +SEC_ERROR_OCSP_TRY_SERVER_LATER
 +</code>
 +
 +This can be fixed by adding two lines into the server's apache configuration.
 +
 +Log into WHM > Apache Configuration > Include Editor > Pre-virtualhost include
 +
 +Add the following two lines at the bottom of the section:
 +
 +<code>
 +SSLUseStapling on
 +SSLStaplingCache shmcb:/tmp/stapling_cache(128000)
 +</code>
 +
 +Then save and restart apache.
 +
 +\\
 +\\
 +\\