{"id":1484,"date":"2025-05-01T14:54:13","date_gmt":"2025-05-01T14:54:13","guid":{"rendered":"https:\/\/certpanelresources.flywheelsites.com\/?page_id=1484"},"modified":"2025-06-12T19:16:01","modified_gmt":"2025-06-12T19:16:01","slug":"how-to-configure-ocsp-stapling-on-an-apache-http-server","status":"publish","type":"page","link":"https:\/\/certpanel.com\/resources\/how-to-configure-ocsp-stapling-on-an-apache-http-server\/","title":{"rendered":"How to Configure OCSP Stapling on an Apache HTTP Server\u00a0"},"content":{"rendered":"\n\n\n\n\n<p>OCSP stapling improves SSL\/TLS performance by making your Apache web server attach (i.e., \u201cstaple\u201d) its certificate\u2019s status information to the TLS handshake. This prevents clients from sending additional requests to the certificate authority (CA), thereby reducing latency and page load performance issues.&nbsp;<\/p>\n\n\n\n<p>In this tutorial, you\u2019ll learn how to enable OCSP stapling on Apache in four steps (we\u2019ll use CentOS and Ubuntu platforms as examples with the <em>SSLUseStapling On<\/em> command). You&#8217;ll also explore how to verify the configuration using CertPanel SSL Monitor.\u00a0<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"535\" src=\"https:\/\/certpanel.com\/resources\/wp-content\/uploads\/image-1-e1748618348432-1024x535.jpeg\" alt=\"An example browser warning showing that a site's certificate has been revoked\" class=\"wp-image-1485\" srcset=\"https:\/\/certpanel.com\/resources\/wp-content\/uploads\/image-1-e1748618348432-1024x535.jpeg 1024w, https:\/\/certpanel.com\/resources\/wp-content\/uploads\/image-1-e1748618348432-300x157.jpeg 300w, https:\/\/certpanel.com\/resources\/wp-content\/uploads\/image-1-e1748618348432-768x401.jpeg 768w, https:\/\/certpanel.com\/resources\/wp-content\/uploads\/image-1-e1748618348432.jpeg 1083w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What You\u2019ll Learn<\/strong>&nbsp;<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"#enable-oscp-stapling\">How to turn on OCSP stapling on an Apache HTTP Server<\/a>.\u00a0<\/li>\n\n\n\n<li><a href=\"#verify-ocsp-stapling\">How to verify OCSP stapling settings using CertPanel SSL Monitor<\/a>.\u00a0<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Prerequisites<\/strong>&nbsp;<\/h3>\n\n\n\n<p><strong>Before you start:<\/strong>&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Your website must have a valid SSL (or, more accurately, TLS) certificate.\u00a0<\/li>\n\n\n\n<li>You must have sudo\/root access to your Apache configuration files on your CentOS or Ubuntu server.&nbsp;<\/li>\n\n\n\n<li>You must have a CertPanel SSL Monitor account for verification.&nbsp;<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"enable-oscp-stapling\"><strong>How to Enable OCSP Stapling on Your Apache Server<\/strong><\/h2>\n\n\n\n<p>For this step, activate OCSP stapling on your Apache server using the <em>SSLUseStapling On<\/em> command. Whether you\u2019re using CentOS or Ubuntu, the steps are almost identical \u2014 there are only a few real differences between them, namely:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>where the configuration file is located, and<\/li>\n\n\n\n<li>where you\u2019ll specify the settings and enable OCSP<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step One: Open Your Configuration File for Editing<\/strong>\u00a0<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>To open the\u00a0Apache configuration file\u00a0for editing in CentOS:\u00a0<\/strong><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code># vim \/etc\/httpd\/conf.d\/ssl.conf&nbsp;<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>To access the Apache <strong>default.conf<\/strong> file in (Ubuntu):<\/strong><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code># vim \/etc\/apache2\/sites-available\/default.conf\u00a0<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step Two: Set Your Configurations<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>To specify your SSL stapling settings in Apache CentOS:<\/strong> add the following lines to the <strong>&lt;VirtualHost _default_:443> block<\/strong>:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code># OCSP Stapling settings for CentOS&nbsp;\n\nSSLStaplingCache \"shmcb:\/var\/run\/ocsp_stapling(128000)\"&nbsp;\n\n# Enable OCSP Stapling&nbsp;\n\nSSLUseStapling On&nbsp;\n\nSSLStaplingResponderTimeout 5&nbsp;\n\nSSLStaplingReturnResponderErrors Off<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>For Apache Ubuntu users:<\/strong> You\u2019ll add virtually the same information to your <strong>default.conf<\/strong> file, but you\u2019ll add it to the <strong>http<\/strong> block instead. The only difference is that you\u2019ll remove the first line (i.e., \u201c# OCSP Stapling settings for CentOS\u201d).<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step Three: Confirm That Your Certificate File Paths Are Correct<\/strong><\/h3>\n\n\n\n<p>Use an amended version of the following commands to ensure your certificates\u2019 file paths and names are properly set using the following example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>SSLCertificateFile \/etc\/ssl\/certs\/exampledomain_com_cert.crt\n\nSSLCertificateFile \/etc\/ssl\/private\/exampledomain_com_keyfile.key\n\nSSLCertificateFile \/etc\/ssl\/certs\/yourCA_cert_bundle.crt<\/code><\/pre>\n\n\n\n<p>Here&#8217;s a quick example of what that may look like:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>SSLCertificateFile \/etc\/ssl\/certs\/certpanel_itsatestsite_online.crt\u00a0\n\nSSLCertificateKeyFile \/etc\/ssl\/private\/private_key.key\u00a0\n\nSSLCertificateChainFile \/etc\/ssl\/certs\/ca_bundle.ca-bundle<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step Four: Restart Apache to Apply the Changes<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>To restart Apache CentOS, use the following command:<\/strong><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code># sudo systemctl restart httpd&nbsp;<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>To restart Ubuntu, you\u2019ll use a slightly different one:<\/strong><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code># sudo systemctl restart apache2<\/code><\/pre>\n\n\n\n<p>Explore how to implement these configurations in our step-by-step tutorial:<\/p>\n\n\n\n<div>\n  <script async src=\"https:\/\/js.storylane.io\/js\/v2\/storylane.js\"><\/script>\n  <div class=\"sl-embed\" style=\"position:relative;padding-bottom:calc(56.25% + 25px);width:100%;height:0;transform:scale(1)\">\n    <iframe loading=\"lazy\" class=\"sl-demo\" src=\"https:\/\/app.storylane.io\/demo\/fnlpnkjql1wk?embed=inline\" name=\"sl-embed\" allow=\"fullscreen\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%!important;height:100%!important;border:1px solid rgba(63,95,172,0.35);box-shadow: 0px 0px 18px rgba(26, 19, 72, 0.15);border-radius:10px;box-sizing:border-box;\"><\/iframe>\n  <\/div>\n<\/div>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"verify-ocsp-stapling\"><strong>How to Verify Your OCSP Stapling Settings Using CertPanel SSL Monitor<\/strong>\u00a0<\/h3>\n\n\n\n<p>The good news is that there\u2019s an easier way to tell whether your OCSP stapling isn\u2019t set up right. In CertPanel, the SSL Monitor offers an intuitive visual dashboard &nbsp;that allows you to easily keep an eye on your OCSP stapling configurations (and 110+ other SSL-related settings and vulnerabilities) to ensure your domain\u2019s security is up to snuff.&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong><a href=\"https:\/\/certpanel.com\/account\/login?returnurl=\/certpanel\/dashboard\/buy\/sslmonitor?site=certpanel\">Sign into CertPanel SSL Monitor<\/a> and check your domain (e.g., certpanel.itsatestsite.online).\u00a0<\/strong>Don\u2019t have a login? No worries\u2014 you can <a href=\"https:\/\/certpanel.com\/account\/registration?returnurl=\/certpanel\/dashboard\/buy\/sslmonitor?site=certpanel\">sign up for a new account<\/a> in no time.<\/li>\n\n\n\n<li><strong>After scanning your domain, check to see if your report is available.<\/strong> To access it, go to the OCSP section of the report and you should see the following message:\u00a0<\/li>\n<\/ul>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>OCSP Stapling: Offered&nbsp;<\/p>\n<\/blockquote>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Do you see \u201cNot Provided\u201d or \u201cRevoked\u201d instead?<\/strong> Recheck your chain file and Apache settings.\u00a0<\/li>\n\n\n\n<li><strong>Your OCSP is now validated and secured.<\/strong> Remember to recheck after certificate renewals.<\/li>\n<\/ul>\n\n\n\n<p>Here&#8217;s a quick overview that walks you through how to check whether OCSP stapling is enabled in CertPanel SSL Monitor: <\/p>\n\n\n\n<div>\n  <script async src=\"https:\/\/js.storylane.io\/js\/v2\/storylane.js\"><\/script>\n  <div class=\"sl-embed\" style=\"position:relative;padding-bottom:calc(56.25% + 25px);width:100%;height:0;transform:scale(1)\">\n    <iframe loading=\"lazy\" class=\"sl-demo\" src=\"https:\/\/app.storylane.io\/demo\/iebfsagmzrtm?embed=inline\" name=\"sl-embed\" allow=\"fullscreen\" allowfullscreen style=\"position:absolute;top:0;left:0;width:100%!important;height:100%!important;border:1px solid rgba(63,95,172,0.35);box-shadow: 0px 0px 18px rgba(26, 19, 72, 0.15);border-radius:10px;box-sizing:border-box;\"><\/iframe>\n  <\/div>\n<\/div>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Monitor OCSP Stapling with CertPanel<\/strong>\u00a0<\/h3>\n\n\n\n<p><strong>CertPanel lets you:&nbsp;<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Monitor your server&#8217;s OCSP status daily\u00a0<\/li>\n\n\n\n<li>Receive alerts on certificate expiration or config-related issues\u00a0<\/li>\n\n\n\n<li>Auto-renew certificates and validate OCSP instantly\u00a0<\/li>\n<\/ul>\n\n\n\n<p>For enterprises or those managing multiple sites, this automation saves time and ensures 100% coverage.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Troubleshooting<\/strong>&nbsp;<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Problem: No OCSP Response in CertPanel<\/strong>&nbsp;<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Solution:<\/strong> Check whether your certificate supports OCSP. (<strong>NOTE:<\/strong> Free CAs sometimes don\u2019t.)\u00a0<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Problem: The SSL\/TLS Certificate Has Been Revoked<\/strong>\u00a0<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Solution:<\/strong> If a certificate is revoked, the browser may show errors like &#8220;Your connection is not private.&#8221; You must replace the certificate wiht a valid one immediately.\u00a0<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Problem: Incomplete Intermediate Certificate Configuration<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Solution:<\/strong> Your <em>SSLCertificateChainFile<\/em> configuration is improperly set, or it\u2019s either missing the intermediate CA certificate or has the wrong one installed. To fix it, double-check to ensure your certificate bundle file contains the right valid ICA certificate and that the file path and name are set correctly.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Final Thoughts on OCSP Stapling in Apache<\/h2>\n\n\n\n<p>Enabling OCSP Stapling by setting <em>SSLUseStapling<\/em> to &#8220;on&#8221; boosts your site&#8217;s performance and ensures better trustworthiness. Apache provides native support, and CertPanel makes verification and monitoring painless. For modern SSL setups, this should be a default best practice.\u00a0<\/p>\n","protected":false},"excerpt":{"rendered":"<p>OCSP stapling improves SSL\/TLS performance by making your Apache web server attach (i.e., \u201cstaple\u201d) its certificate\u2019s status information to the TLS handshake. This prevents clients from sending additional requests to the certificate authority (CA), thereby reducing latency and page load performance issues.&nbsp; In this tutorial, you\u2019ll learn how to enable OCSP stapling on Apache in<\/p>\n","protected":false},"author":10,"featured_media":1823,"parent":1153,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"wp-custom-template-expert-guides-detail","meta":{"_acf_changed":false,"_eb_attr":"","footnotes":""},"class_list":["post-1484","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Configure OCSP Stapling on an Apache HTTP Server\u00a0<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/certpanel.com\/resources\/how-to-configure-ocsp-stapling-on-an-apache-http-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Configure OCSP Stapling on an Apache HTTP Server\u00a0\" \/>\n<meta property=\"og:description\" content=\"OCSP stapling improves SSL\/TLS performance by making your Apache web server attach (i.e., \u201cstaple\u201d) its certificate\u2019s status information to the TLS handshake. This prevents clients from sending additional requests to the certificate authority (CA), thereby reducing latency and page load performance issues.&nbsp; In this tutorial, you\u2019ll learn how to enable OCSP stapling on Apache in\" \/>\n<meta property=\"og:url\" content=\"https:\/\/certpanel.com\/resources\/how-to-configure-ocsp-stapling-on-an-apache-http-server\/\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-12T19:16:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/certpanel.com\/resources\/wp-content\/uploads\/apache-ocsp-stapling-feature.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"418\" \/>\n\t<meta property=\"og:image:height\" content=\"200\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/certpanel.com\\\/resources\\\/how-to-configure-ocsp-stapling-on-an-apache-http-server\\\/\",\"url\":\"https:\\\/\\\/certpanel.com\\\/resources\\\/how-to-configure-ocsp-stapling-on-an-apache-http-server\\\/\",\"name\":\"How to Configure OCSP Stapling on an Apache HTTP Server\u00a0\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/certpanel.com\\\/resources\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/certpanel.com\\\/resources\\\/how-to-configure-ocsp-stapling-on-an-apache-http-server\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/certpanel.com\\\/resources\\\/how-to-configure-ocsp-stapling-on-an-apache-http-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/certpanel.com\\\/resources\\\/wp-content\\\/uploads\\\/apache-ocsp-stapling-feature.jpg\",\"datePublished\":\"2025-05-01T14:54:13+00:00\",\"dateModified\":\"2025-06-12T19:16:01+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/certpanel.com\\\/resources\\\/how-to-configure-ocsp-stapling-on-an-apache-http-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/certpanel.com\\\/resources\\\/how-to-configure-ocsp-stapling-on-an-apache-http-server\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/certpanel.com\\\/resources\\\/how-to-configure-ocsp-stapling-on-an-apache-http-server\\\/#primaryimage\",\"url\":\"https:\\\/\\\/certpanel.com\\\/resources\\\/wp-content\\\/uploads\\\/apache-ocsp-stapling-feature.jpg\",\"contentUrl\":\"https:\\\/\\\/certpanel.com\\\/resources\\\/wp-content\\\/uploads\\\/apache-ocsp-stapling-feature.jpg\",\"width\":418,\"height\":200,\"caption\":\"Thumbnail feature image for a CertPanel Resource article on OCSP Stapling for an Apache HTTP server\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/certpanel.com\\\/resources\\\/how-to-configure-ocsp-stapling-on-an-apache-http-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/certpanel.com\\\/resources\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Expert Guides\",\"item\":\"https:\\\/\\\/certpanel.com\\\/resources\\\/expert-guides\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"SSL\\\/TLS Best Practices\",\"item\":\"https:\\\/\\\/certpanel.com\\\/resources\\\/ssl-tls-best-practices\\\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"How to Configure OCSP Stapling on an Apache HTTP Server\u00a0\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/certpanel.com\\\/resources\\\/#website\",\"url\":\"https:\\\/\\\/certpanel.com\\\/resources\\\/\",\"name\":\"\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/certpanel.com\\\/resources\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Configure OCSP Stapling on an Apache HTTP Server\u00a0","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/certpanel.com\/resources\/how-to-configure-ocsp-stapling-on-an-apache-http-server\/","og_locale":"en_US","og_type":"article","og_title":"How to Configure OCSP Stapling on an Apache HTTP Server\u00a0","og_description":"OCSP stapling improves SSL\/TLS performance by making your Apache web server attach (i.e., \u201cstaple\u201d) its certificate\u2019s status information to the TLS handshake. This prevents clients from sending additional requests to the certificate authority (CA), thereby reducing latency and page load performance issues.&nbsp; In this tutorial, you\u2019ll learn how to enable OCSP stapling on Apache in","og_url":"https:\/\/certpanel.com\/resources\/how-to-configure-ocsp-stapling-on-an-apache-http-server\/","article_modified_time":"2025-06-12T19:16:01+00:00","og_image":[{"width":418,"height":200,"url":"https:\/\/certpanel.com\/resources\/wp-content\/uploads\/apache-ocsp-stapling-feature.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/certpanel.com\/resources\/how-to-configure-ocsp-stapling-on-an-apache-http-server\/","url":"https:\/\/certpanel.com\/resources\/how-to-configure-ocsp-stapling-on-an-apache-http-server\/","name":"How to Configure OCSP Stapling on an Apache HTTP Server\u00a0","isPartOf":{"@id":"https:\/\/certpanel.com\/resources\/#website"},"primaryImageOfPage":{"@id":"https:\/\/certpanel.com\/resources\/how-to-configure-ocsp-stapling-on-an-apache-http-server\/#primaryimage"},"image":{"@id":"https:\/\/certpanel.com\/resources\/how-to-configure-ocsp-stapling-on-an-apache-http-server\/#primaryimage"},"thumbnailUrl":"https:\/\/certpanel.com\/resources\/wp-content\/uploads\/apache-ocsp-stapling-feature.jpg","datePublished":"2025-05-01T14:54:13+00:00","dateModified":"2025-06-12T19:16:01+00:00","breadcrumb":{"@id":"https:\/\/certpanel.com\/resources\/how-to-configure-ocsp-stapling-on-an-apache-http-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/certpanel.com\/resources\/how-to-configure-ocsp-stapling-on-an-apache-http-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/certpanel.com\/resources\/how-to-configure-ocsp-stapling-on-an-apache-http-server\/#primaryimage","url":"https:\/\/certpanel.com\/resources\/wp-content\/uploads\/apache-ocsp-stapling-feature.jpg","contentUrl":"https:\/\/certpanel.com\/resources\/wp-content\/uploads\/apache-ocsp-stapling-feature.jpg","width":418,"height":200,"caption":"Thumbnail feature image for a CertPanel Resource article on OCSP Stapling for an Apache HTTP server"},{"@type":"BreadcrumbList","@id":"https:\/\/certpanel.com\/resources\/how-to-configure-ocsp-stapling-on-an-apache-http-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/certpanel.com\/resources\/"},{"@type":"ListItem","position":2,"name":"Expert Guides","item":"https:\/\/certpanel.com\/resources\/expert-guides\/"},{"@type":"ListItem","position":3,"name":"SSL\/TLS Best Practices","item":"https:\/\/certpanel.com\/resources\/ssl-tls-best-practices\/"},{"@type":"ListItem","position":4,"name":"How to Configure OCSP Stapling on an Apache HTTP Server\u00a0"}]},{"@type":"WebSite","@id":"https:\/\/certpanel.com\/resources\/#website","url":"https:\/\/certpanel.com\/resources\/","name":"","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/certpanel.com\/resources\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/certpanel.com\/resources\/wp-json\/wp\/v2\/pages\/1484","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/certpanel.com\/resources\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/certpanel.com\/resources\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/certpanel.com\/resources\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/certpanel.com\/resources\/wp-json\/wp\/v2\/comments?post=1484"}],"version-history":[{"count":5,"href":"https:\/\/certpanel.com\/resources\/wp-json\/wp\/v2\/pages\/1484\/revisions"}],"predecessor-version":[{"id":1796,"href":"https:\/\/certpanel.com\/resources\/wp-json\/wp\/v2\/pages\/1484\/revisions\/1796"}],"up":[{"embeddable":true,"href":"https:\/\/certpanel.com\/resources\/wp-json\/wp\/v2\/pages\/1153"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/certpanel.com\/resources\/wp-json\/wp\/v2\/media\/1823"}],"wp:attachment":[{"href":"https:\/\/certpanel.com\/resources\/wp-json\/wp\/v2\/media?parent=1484"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}