{"id":877,"date":"2011-01-21T10:47:29","date_gmt":"2011-01-21T01:17:29","guid":{"rendered":"http:\/\/www.clearchain.com\/blog\/?p=877"},"modified":"2011-07-04T15:21:36","modified_gmt":"2011-07-04T05:51:36","slug":"solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0","status":"publish","type":"post","link":"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0","title":{"rendered":"Solving the Apache SSL error &#8220;Oops, no RSA or DSA server certificate found for &#8216;www.somedomain.com:0&#8217;?!&#8221;"},"content":{"rendered":"<p><a href=\"http:\/\/www.clearchain.com\/blog\/images\/\/2011\/01\/ssl-logo.gif\"><img loading=\"lazy\" decoding=\"async\" class=\"alignleft size-full wp-image-883\" title=\"ssl-logo\" src=\"http:\/\/www.clearchain.com\/blog\/images\/\/2011\/01\/ssl-logo.gif\" alt=\"\" width=\"100\" height=\"50\" \/><\/a>Recently a colleague of mine came to me with a problem he was having with SSL certificates and the <a href=\"http:\/\/httpd.apache.org\/\">web server Apache 2.2<\/a>. Put simply Apache (httpd) would not start. It was an unusual situation as this server had been running flawlessly for almost 2 years and it was only a recent power outage that had caused the error to occur. Running<em> apachectl configtest<\/em> revealed no problems with the setup but when running <em>apachectl start<\/em>, whilst there was no errors reported on the command line, apache would instantly die\/crash. Checking the log files we found:<\/p>\n<pre><strong>[Thu Jan 20 14:15:16 2011] [error] Oops, no RSA or DSA server certificate found for 'www.somedomain.com:0'?!<\/strong><\/pre>\n<p>Whilst <em>somedomain.com<\/em> isn&#8217;t the official domain name reported (I can&#8217;t reveal the client), this error was being printed for every SSL host except the default SSL host. Ironically the default SSL host was simply a redirect to one of the others. A quick check and indeed the problem lied with the SSL hosts &#8211; we removed every ssl host and the webserver would start fine &#8211; obviously without any ssl.<\/p>\n<p>My colleague and I were\u00a0 perplexed. He&#8217;d tried a quite few things to fix this all without luck. A so call Server Admin told him it was due to not using ip based virtual hosts for ssl, he claimed you can&#8217;t use Name Base Virtual hosts with SSL. No doubt this was obtained from a <a href=\"http:\/\/mail-archives.apache.org\/mod_mbox\/httpd-users\/200512.mbox\/%3C8C29B2F93BAE9047A906EF6D6F9C5D43FE00B5@exchange2k301.gaia.fr%3E\">quick google search for the error.<\/a> The problems is you <em><span style=\"text-decoration: underline;\">can<\/span><\/em> run NamedBasedVirtual hosts with SSL on port 443 provided you have a wildcard SSL certificate. A wild is required for NamedBaseVirtual hosts as the SSL connection is established first before the headers are sent. A wildcard will allow any subdomain to use the SSL connection then apache will see the host header and respond with the appropriate vhost. If on only have a single certificate this does not work and you&#8217;ll need a separate IP per certificate.<\/p>\n<p>Anyway, we began trying to debug the issue. First we checked the certificate files were at the specified locations &#8211; they were. Next we checked the certificates were actually valid. You can use the <a href=\"http:\/\/www.openssl.org\/\">openssl<\/a> command below to do this:<\/p>\n<pre><strong>openssl x509 -noout -text -in <em>YOURCERTIFICATE.crt<\/em><\/strong><\/pre>\n<p>The certificate, key, and certificate authority (CA) were all valid and in date.<br \/>\nNext we tried putting each Vhost in to the config one by one to see if one host had errors over another. Turns out it didn&#8217;t matter what order each host was in the config file or which ssl hosts were included, they all had issues &#8211; except for the default ssl vhost.<\/p>\n<p>At this point we were a little lost. So we decided to go back to basics and work out what the error really meant. We search to see what apache module the error came from. A simple grep later we&#8217;d narrowed down the error to mod_ssl. A search of the mod_ssl source code found the following instance of the message:<\/p>\n<pre># grep Oops *\r\nssl_engine_init.c:\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \"Init: Oops, you want to request client \"\r\nssl_engine_init.c:\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \"<strong>Oops, no RSA or DSA server certificate found<\/strong> \"\r\nssl_engine_init.c:\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 \"Oops, no RSA or DSA server private key found?!\");\r\nssl_engine_io.c:\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0 (argp != NULL ? \"(BIO dump follows)\" : \"(Oops, no memory buffer?)\"));<\/pre>\n<p>Looking in <em>ssl_engine_init.c <\/em>we found the error came from the following function<\/p>\n<pre lang=\"C\">static void ssl_init_server_certs(server_rec *s,\r\n                                  apr_pool_t *p,\r\n                                  apr_pool_t *ptemp,\r\n                                  modssl_ctx_t *mctx)\r\n{\r\n    const char *rsa_id, *dsa_id;\r\n    const char *vhost_id = mctx-&gt;sc-&gt;vhost_id;\r\n    int i;\r\n    int have_rsa, have_dsa;\r\n\r\n    rsa_id = ssl_asn1_table_keyfmt(ptemp, vhost_id, SSL_AIDX_RSA);\r\n    dsa_id = ssl_asn1_table_keyfmt(ptemp, vhost_id, SSL_AIDX_DSA);\r\n\r\n    <em>have_rsa<\/em> = ssl_server_import_cert(s, mctx, rsa_id, SSL_AIDX_RSA);\r\n    <em>have_dsa<\/em> = ssl_server_import_cert(s, mctx, dsa_id, SSL_AIDX_DSA);\r\n\r\n    if (!(have_rsa || have_dsa)) {\r\n        ap_log_error(APLOG_MARK, APLOG_ERR, 0, s,\r\n                <strong>\"Oops, no RSA or DSA server certificate found \"\r\n                \"for<\/strong> '%s:%d'?!\", s-&gt;server_hostname, s-&gt;port);\r\n        ssl_die();\r\n    }\r\n\r\n    for (i = 0; i &lt; SSL_AIDX_MAX; i++) {         ssl_check_public_cert(s, ptemp, mctx-&gt;pks-&gt;certs[i], i);\r\n    }\r\n\r\n    have_rsa = ssl_server_import_key(s, mctx, rsa_id, SSL_AIDX_RSA);\r\n    have_dsa = ssl_server_import_key(s, mctx, dsa_id, SSL_AIDX_DSA);\r\n\r\n    if (!(have_rsa || have_dsa)) {\r\n        ap_log_error(APLOG_MARK, APLOG_ERR, 0, s,\r\n                \"Oops, no RSA or DSA server private key found?!\");\r\n        ssl_die();\r\n    }\r\n}<\/pre>\n<p>Hence\u00a0 the error was caused by the certificates not being able to be imported. Once again we checked paths to make sure the certificates\/keys were correct. Alas they were. So we began to wonder why the certificates couldn&#8217;t be found. We&#8217;d specified the correct files, confirmed they were correct. It occurred to me that perhaps the openSSL context had not been setup correctly. But why not? I took a look at the default SSL vhost which did work and noticed a single line that were not in any of the other ssl vhosts.<\/p>\n<pre>SSLEngine on<\/pre>\n<p>The comment above this line read:<\/p>\n<pre>#\u00a0\u00a0 SSL Engine Switch:\r\n#\u00a0\u00a0 Enable\/Disable SSL for this virtual host.<\/pre>\n<p>I added &#8220;<em>SSLEngine On&#8221;<\/em> to the other ssl vhosts and it worked! So it turns out you can have an vhost setup on port 443 without SSL hence for each vhost you want SSL working in you must add the above line. My colleague was extremely thankful &#8211; why it happened in the\u00a0 first place, we still don&#8217;t know. We suspect previously the option may have been enabled globally. However the fix allows apache to run again and works after a clean shutdown and startup.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Recently a colleague of mine came to me with a problem he was having with SSL certificates and the web server Apache 2.2. Put simply Apache (httpd) would not start. It was an unusual situation as this server had been running flawlessly for almost 2 years and it was only a recent power outage that<a href=\"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0\"> <font size=-2>[..more..]<\/font><\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[21],"tags":[73,337,338,343,336,340,339,341,342],"class_list":["post-877","post","type-post","status-publish","format-standard","hentry","category-opensource","tag-apache","tag-certificate","tag-crash","tag-httpd","tag-openssl","tag-ssl","tag-startup","tag-webserver","tag-www"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Solving the Apache SSL error &quot;Oops, no RSA or DSA server certificate found for &#039;www.somedomain.com:0&#039;?!&quot; - ClearChain<\/title>\n<meta name=\"description\" content=\"Recently a colleague of mine came to me with a problem he was having with SSL certificates and the web server Apache 2.2. Put simply Apache (httpd) would\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Benjamin Close\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0\"},\"author\":{\"name\":\"Benjamin Close\",\"@id\":\"https:\/\/www.clearchain.com\/blog\/#\/schema\/person\/aef6faa2c32188398139db9270ca1c98\"},\"headline\":\"Solving the Apache SSL error &#8220;Oops, no RSA or DSA server certificate found for &#8216;www.somedomain.com:0&#8217;?!&#8221;\",\"datePublished\":\"2011-01-21T01:17:29+00:00\",\"dateModified\":\"2011-07-04T05:51:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0\"},\"wordCount\":701,\"commentCount\":33,\"image\":{\"@id\":\"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0#primaryimage\"},\"thumbnailUrl\":\"http:\/\/www.clearchain.com\/blog\/images\/\/2011\/01\/ssl-logo.gif\",\"keywords\":[\"apache\",\"certificate\",\"crash\",\"httpd\",\"openssl\",\"ssl\",\"startup\",\"webserver\",\"www\"],\"articleSection\":[\"OpenSource\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0\",\"url\":\"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0\",\"name\":\"Solving the Apache SSL error \\\"Oops, no RSA or DSA server certificate found for 'www.somedomain.com:0'?!\\\" - ClearChain\",\"isPartOf\":{\"@id\":\"https:\/\/www.clearchain.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0#primaryimage\"},\"thumbnailUrl\":\"http:\/\/www.clearchain.com\/blog\/images\/\/2011\/01\/ssl-logo.gif\",\"datePublished\":\"2011-01-21T01:17:29+00:00\",\"dateModified\":\"2011-07-04T05:51:36+00:00\",\"author\":{\"@id\":\"https:\/\/www.clearchain.com\/blog\/#\/schema\/person\/aef6faa2c32188398139db9270ca1c98\"},\"description\":\"Recently a colleague of mine came to me with a problem he was having with SSL certificates and the web server Apache 2.2. Put simply Apache (httpd) would\",\"breadcrumb\":{\"@id\":\"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0#primaryimage\",\"url\":\"http:\/\/www.clearchain.com\/blog\/images\/\/2011\/01\/ssl-logo.gif\",\"contentUrl\":\"http:\/\/www.clearchain.com\/blog\/images\/\/2011\/01\/ssl-logo.gif\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.clearchain.com\/blog\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Solving the Apache SSL error &#8220;Oops, no RSA or DSA server certificate found for &#8216;www.somedomain.com:0&#8217;?!&#8221;\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.clearchain.com\/blog\/#website\",\"url\":\"https:\/\/www.clearchain.com\/blog\/\",\"name\":\"ClearChain\",\"description\":\"-= Daily Happenings =-\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.clearchain.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.clearchain.com\/blog\/#\/schema\/person\/aef6faa2c32188398139db9270ca1c98\",\"name\":\"Benjamin Close\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.clearchain.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/19dca0aa372edfa901b93c556dfda2e78ad4434558fe4d139598e086315d714a?s=96&d=mm&r=pg\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/19dca0aa372edfa901b93c556dfda2e78ad4434558fe4d139598e086315d714a?s=96&d=mm&r=pg\",\"caption\":\"Benjamin Close\"},\"sameAs\":[\"http:\/\/www.clearchain.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Solving the Apache SSL error \"Oops, no RSA or DSA server certificate found for 'www.somedomain.com:0'?!\" - ClearChain","description":"Recently a colleague of mine came to me with a problem he was having with SSL certificates and the web server Apache 2.2. Put simply Apache (httpd) would","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:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0","twitter_misc":{"Written by":"Benjamin Close","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0#article","isPartOf":{"@id":"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0"},"author":{"name":"Benjamin Close","@id":"https:\/\/www.clearchain.com\/blog\/#\/schema\/person\/aef6faa2c32188398139db9270ca1c98"},"headline":"Solving the Apache SSL error &#8220;Oops, no RSA or DSA server certificate found for &#8216;www.somedomain.com:0&#8217;?!&#8221;","datePublished":"2011-01-21T01:17:29+00:00","dateModified":"2011-07-04T05:51:36+00:00","mainEntityOfPage":{"@id":"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0"},"wordCount":701,"commentCount":33,"image":{"@id":"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0#primaryimage"},"thumbnailUrl":"http:\/\/www.clearchain.com\/blog\/images\/\/2011\/01\/ssl-logo.gif","keywords":["apache","certificate","crash","httpd","openssl","ssl","startup","webserver","www"],"articleSection":["OpenSource"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0","url":"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0","name":"Solving the Apache SSL error \"Oops, no RSA or DSA server certificate found for 'www.somedomain.com:0'?!\" - ClearChain","isPartOf":{"@id":"https:\/\/www.clearchain.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0#primaryimage"},"image":{"@id":"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0#primaryimage"},"thumbnailUrl":"http:\/\/www.clearchain.com\/blog\/images\/\/2011\/01\/ssl-logo.gif","datePublished":"2011-01-21T01:17:29+00:00","dateModified":"2011-07-04T05:51:36+00:00","author":{"@id":"https:\/\/www.clearchain.com\/blog\/#\/schema\/person\/aef6faa2c32188398139db9270ca1c98"},"description":"Recently a colleague of mine came to me with a problem he was having with SSL certificates and the web server Apache 2.2. Put simply Apache (httpd) would","breadcrumb":{"@id":"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0#primaryimage","url":"http:\/\/www.clearchain.com\/blog\/images\/\/2011\/01\/ssl-logo.gif","contentUrl":"http:\/\/www.clearchain.com\/blog\/images\/\/2011\/01\/ssl-logo.gif"},{"@type":"BreadcrumbList","@id":"https:\/\/www.clearchain.com\/blog\/posts\/solving-the-apache-ssl-error-oops-no-rsa-or-dsa-server-certificate-found-for-www-somedomain-com0#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.clearchain.com\/blog"},{"@type":"ListItem","position":2,"name":"Solving the Apache SSL error &#8220;Oops, no RSA or DSA server certificate found for &#8216;www.somedomain.com:0&#8217;?!&#8221;"}]},{"@type":"WebSite","@id":"https:\/\/www.clearchain.com\/blog\/#website","url":"https:\/\/www.clearchain.com\/blog\/","name":"ClearChain","description":"-= Daily Happenings =-","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.clearchain.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.clearchain.com\/blog\/#\/schema\/person\/aef6faa2c32188398139db9270ca1c98","name":"Benjamin Close","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.clearchain.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/19dca0aa372edfa901b93c556dfda2e78ad4434558fe4d139598e086315d714a?s=96&d=mm&r=pg","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/19dca0aa372edfa901b93c556dfda2e78ad4434558fe4d139598e086315d714a?s=96&d=mm&r=pg","caption":"Benjamin Close"},"sameAs":["http:\/\/www.clearchain.com"]}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.clearchain.com\/blog\/wp-json\/wp\/v2\/posts\/877","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.clearchain.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.clearchain.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.clearchain.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.clearchain.com\/blog\/wp-json\/wp\/v2\/comments?post=877"}],"version-history":[{"count":8,"href":"https:\/\/www.clearchain.com\/blog\/wp-json\/wp\/v2\/posts\/877\/revisions"}],"predecessor-version":[{"id":1012,"href":"https:\/\/www.clearchain.com\/blog\/wp-json\/wp\/v2\/posts\/877\/revisions\/1012"}],"wp:attachment":[{"href":"https:\/\/www.clearchain.com\/blog\/wp-json\/wp\/v2\/media?parent=877"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.clearchain.com\/blog\/wp-json\/wp\/v2\/categories?post=877"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.clearchain.com\/blog\/wp-json\/wp\/v2\/tags?post=877"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}