{"id":2433,"date":"2017-04-16T06:45:54","date_gmt":"2017-04-16T06:45:54","guid":{"rendered":"http:\/\/pariswells.com\/blog\/?p=2433"},"modified":"2022-12-02T00:39:38","modified_gmt":"2022-12-02T00:39:38","slug":"securing-apache-to-use-certificate-authentication-auth_x509","status":"publish","type":"post","link":"https:\/\/pariswells.com\/blog\/random\/securing-apache-to-use-certificate-authentication-auth_x509","title":{"rendered":"Securing Apache to use Certificate Authentication auth_x509"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Query to see if Certificate Exists via&nbsp; x509 based logins<\/p>\n\n\n<div class=\"wp-block-wab-pastacode\">\n\t<div class=\"code-embed-wrapper\"> <pre class=\"language-markup code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-markup code-embed-code\">&lt;?php<br\/>include(__DIR__.&quot;\/auth_mysql.php&quot;);<br\/><br\/>\/**<br\/> * Mysql based authentication<br\/> * The standard username\/password based authentication library<br\/> *<br\/> * @package CMS<br\/> * @author Sid Karunaratne<br\/> **\/<br\/>class auth_x509 extends auth_mysql<br\/>{<br\/>\tpublic function pre_login()<br\/>\t{<br\/>\t\tforeach($_SERVER as $key =&gt; $value)<br\/>\t\t{<br\/>\t\t\tif (!$value || strncmp($key, \u2019SSL_CLIENT_S_DN_Email\u2019, 21) !== 0)<br\/>\t\t\t\tcontinue;<br\/>\t\t\t$user = $this-&gt;_check_email_is_valid($value);<br\/>\t\t\tif ($user)<br\/>\t\t\t\treturn $user;<br\/>\t\t}<br\/>\t\treturn false;<br\/>\t}<br\/>\t<br\/>\tprotected function _check_email_is_valid($email)<br\/>\t{<br\/>\t\t$user = $this-&gt;db-&gt;select(&quot;<br\/>\t\t\t\t\tu.id,<br\/>\t\t\t\t\tu.name,<br\/>\t\t\t\t\tGROUP_CONCAT(g.id SEPARATOR \u2019,\u2019) as team_ids,<br\/>\t\t\t\t\tu.username as email,<br\/>\t\t\t\t\tGROUP_CONCAT(g.name SEPARATOR \u2019, ?) as teams,<br\/>\t\t\t\t\tpermission_last_set<br\/>\t\t\t\t&quot;)<br\/>\t\t\t-&gt;from(&quot;_auth_user u&quot;)<br\/>\t\t\t-&gt;join(&quot;_auth_user_group_xrefs aux&quot;, &quot;aux.user_id = u.id&quot;)<br\/>\t\t\t-&gt;join(&quot;_auth_group g&quot;, &quot;g.id = aux.group_id&quot;)<br\/>\t\t\t-&gt;where(&quot;u.username&quot;, $email)<br\/>\t\t\t-&gt;group_by(&quot;u.id&quot;)<br\/>\t\t\t-&gt;get()-&gt;result();<br\/>\t\tif (!$user)<br\/>\t\t\treturn false;<br\/>\t\t<br\/>\t\t<br\/>\t\t\/\/ The user is valid<br\/>\t\t$user = array_shift($user);\t\t<br\/>\t\t$user = $this-&gt;_finalise_user_login($user);<br\/>\t\treturn $user;<br\/>\t}<br\/>\t<br\/>\tpublic function login($credentials)<br\/>\t{<br\/>\t\treturn false;<br\/>\t}<br\/>}<br\/>\/\/ END class auth_x509<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">httpd-ssl.conf<\/p>\n\n\n<div class=\"wp-block-wab-pastacode\">\n\t<div class=\"code-embed-wrapper\"> <pre class=\"language-markup code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-markup code-embed-code\">apacheconf\u201d manual=\u201dListen 443<br\/><br\/>SetEnvIf User-Agent &quot;.*MSIE.*&quot; \\<br\/>nokeepalive ssl-unclean-shutdown \\<br\/>downgrade-1.0 force-response-1.0<br\/><br\/>&lt;VirtualHost *:443&gt;<br\/>DocumentRoot &quot;\/srv\/http\/&quot;<br\/>ServerName website.domain.com:443<br\/>ServerAdmin email@address.com<br\/>ErrorLog \/var\/log\/httpd\/ssl.error.log<br\/>TransferLog \/var\/log\/httpd\/ssl.access.log<br\/>BrowserMatch &quot;.*MSIE.*&quot; \\<br\/>nokeepalive ssl-unclean-shutdown \\<br\/>downgrade-1.0 force-response-1.0<br\/><br\/>SSLEngine on<br\/>SSLProtocol -all +TLSv1 +SSLv3<br\/>SSLCipherSuite HIGH:MEDIUM<br\/>SSLProxyEngine off<br\/># The certificate CACert signed<br\/>SSLCertificateFile \/etc\/httpd\/conf\/ssl\/dev.zealothost.net.crt<br\/># The private key<br\/>SSLCertificateKeyFile \/etc\/httpd\/conf\/ssl\/dev.zealothost.net.key<br\/># CACert\u2019s certificate - Seems to not be required<br\/>SSLCertificateChainFile \/etc\/httpd\/conf\/ssl\/ca.crt<br\/># CACert\u2019s certificate - The CA I require certificates to be signed with<br\/>SSLCACertificateFile \/etc\/httpd\/conf\/ssl\/ca-dskort.crt<br\/>SSLOptions +StrictRequire +OptRenegotiate +StdEnvVars +ExportCertData<br\/><br\/>SSLVerifyClient require<br\/>SSLVerifyDepth 1<br\/>&lt;\/VirtualHost&gt;<\/code><\/pre> <div class=\"code-embed-infos\"> <\/div> <\/div><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Query to see if Certificate Exists via&nbsp; x509 based logins httpd-ssl.conf<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320,4],"tags":[1812,1813,1814],"class_list":["post-2433","post","type-post","status-publish","format-standard","hentry","category-code","category-random","tag-apache","tag-httpd-ssl-conf","tag-x509-based-logins"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"Query to see if Certificate Exists via x509 based logins httpd-ssl.conf\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"paris\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/pariswells.com\/blog\/random\/securing-apache-to-use-certificate-authentication-auth_x509\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Welcome to Pariswells.com |\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Securing Apache to use Certificate Authentication auth_x509 | Welcome to Pariswells.com\" \/>\n\t\t<meta property=\"og:description\" content=\"Query to see if Certificate Exists via x509 based logins httpd-ssl.conf\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/pariswells.com\/blog\/random\/securing-apache-to-use-certificate-authentication-auth_x509\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2017-04-16T06:45:54+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2022-12-02T00:39:38+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Securing Apache to use Certificate Authentication auth_x509 | Welcome to Pariswells.com\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Query to see if Certificate Exists via x509 based logins httpd-ssl.conf\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/securing-apache-to-use-certificate-authentication-auth_x509#article\",\"name\":\"Securing Apache to use Certificate Authentication auth_x509 | Welcome to Pariswells.com\",\"headline\":\"Securing Apache to use Certificate Authentication auth_x509\",\"author\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\"},\"datePublished\":\"2017-04-16T06:45:54+00:00\",\"dateModified\":\"2022-12-02T00:39:38+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/securing-apache-to-use-certificate-authentication-auth_x509#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/securing-apache-to-use-certificate-authentication-auth_x509#webpage\"},\"articleSection\":\"Code, Random, apache, httpd-ssl.conf, x509 based logins\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/securing-apache-to-use-certificate-authentication-auth_x509#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pariswells.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/random#listItem\",\"name\":\"Random\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/random#listItem\",\"position\":2,\"name\":\"Random\",\"item\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/random\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/securing-apache-to-use-certificate-authentication-auth_x509#listItem\",\"name\":\"Securing Apache to use Certificate Authentication auth_x509\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/securing-apache-to-use-certificate-authentication-auth_x509#listItem\",\"position\":3,\"name\":\"Securing Apache to use Certificate Authentication auth_x509\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/random#listItem\",\"name\":\"Random\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\",\"name\":\"Welcome to Pariswells.com\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris\",\"name\":\"paris\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/securing-apache-to-use-certificate-authentication-auth_x509#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/93b8ee3f592ac401167f870452bd82d43de80152cd3524e2853403658ada9984?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"paris\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/securing-apache-to-use-certificate-authentication-auth_x509#webpage\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/securing-apache-to-use-certificate-authentication-auth_x509\",\"name\":\"Securing Apache to use Certificate Authentication auth_x509 | Welcome to Pariswells.com\",\"description\":\"Query to see if Certificate Exists via x509 based logins httpd-ssl.conf\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/securing-apache-to-use-certificate-authentication-auth_x509#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"datePublished\":\"2017-04-16T06:45:54+00:00\",\"dateModified\":\"2022-12-02T00:39:38+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/\",\"name\":\"Welcome to Pariswells.com\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Securing Apache to use Certificate Authentication auth_x509 | Welcome to Pariswells.com","description":"Query to see if Certificate Exists via x509 based logins httpd-ssl.conf","canonical_url":"https:\/\/pariswells.com\/blog\/random\/securing-apache-to-use-certificate-authentication-auth_x509","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pariswells.com\/blog\/random\/securing-apache-to-use-certificate-authentication-auth_x509#article","name":"Securing Apache to use Certificate Authentication auth_x509 | Welcome to Pariswells.com","headline":"Securing Apache to use Certificate Authentication auth_x509","author":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"publisher":{"@id":"https:\/\/pariswells.com\/blog\/#organization"},"datePublished":"2017-04-16T06:45:54+00:00","dateModified":"2022-12-02T00:39:38+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/pariswells.com\/blog\/random\/securing-apache-to-use-certificate-authentication-auth_x509#webpage"},"isPartOf":{"@id":"https:\/\/pariswells.com\/blog\/random\/securing-apache-to-use-certificate-authentication-auth_x509#webpage"},"articleSection":"Code, Random, apache, httpd-ssl.conf, x509 based logins"},{"@type":"BreadcrumbList","@id":"https:\/\/pariswells.com\/blog\/random\/securing-apache-to-use-certificate-authentication-auth_x509#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/pariswells.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/random#listItem","name":"Random"}},{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/random#listItem","position":2,"name":"Random","item":"https:\/\/pariswells.com\/blog\/category\/random","nextItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/random\/securing-apache-to-use-certificate-authentication-auth_x509#listItem","name":"Securing Apache to use Certificate Authentication auth_x509"},"previousItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/random\/securing-apache-to-use-certificate-authentication-auth_x509#listItem","position":3,"name":"Securing Apache to use Certificate Authentication auth_x509","previousItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/random#listItem","name":"Random"}}]},{"@type":"Organization","@id":"https:\/\/pariswells.com\/blog\/#organization","name":"Welcome to Pariswells.com","url":"https:\/\/pariswells.com\/blog\/"},{"@type":"Person","@id":"https:\/\/pariswells.com\/blog\/author\/paris#author","url":"https:\/\/pariswells.com\/blog\/author\/paris","name":"paris","image":{"@type":"ImageObject","@id":"https:\/\/pariswells.com\/blog\/random\/securing-apache-to-use-certificate-authentication-auth_x509#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/93b8ee3f592ac401167f870452bd82d43de80152cd3524e2853403658ada9984?s=96&d=mm&r=g","width":96,"height":96,"caption":"paris"}},{"@type":"WebPage","@id":"https:\/\/pariswells.com\/blog\/random\/securing-apache-to-use-certificate-authentication-auth_x509#webpage","url":"https:\/\/pariswells.com\/blog\/random\/securing-apache-to-use-certificate-authentication-auth_x509","name":"Securing Apache to use Certificate Authentication auth_x509 | Welcome to Pariswells.com","description":"Query to see if Certificate Exists via x509 based logins httpd-ssl.conf","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/pariswells.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/pariswells.com\/blog\/random\/securing-apache-to-use-certificate-authentication-auth_x509#breadcrumblist"},"author":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"creator":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"datePublished":"2017-04-16T06:45:54+00:00","dateModified":"2022-12-02T00:39:38+00:00"},{"@type":"WebSite","@id":"https:\/\/pariswells.com\/blog\/#website","url":"https:\/\/pariswells.com\/blog\/","name":"Welcome to Pariswells.com","inLanguage":"en-US","publisher":{"@id":"https:\/\/pariswells.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Welcome to Pariswells.com |","og:type":"article","og:title":"Securing Apache to use Certificate Authentication auth_x509 | Welcome to Pariswells.com","og:description":"Query to see if Certificate Exists via x509 based logins httpd-ssl.conf","og:url":"https:\/\/pariswells.com\/blog\/random\/securing-apache-to-use-certificate-authentication-auth_x509","article:published_time":"2017-04-16T06:45:54+00:00","article:modified_time":"2022-12-02T00:39:38+00:00","twitter:card":"summary","twitter:title":"Securing Apache to use Certificate Authentication auth_x509 | Welcome to Pariswells.com","twitter:description":"Query to see if Certificate Exists via x509 based logins httpd-ssl.conf"},"aioseo_meta_data":{"post_id":"2433","title":null,"description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-21 05:40:33","updated":"2022-12-02 00:51:28","primary_term":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/pariswells.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/pariswells.com\/blog\/category\/random\" title=\"Random\">Random<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tSecuring Apache to use Certificate Authentication auth_x509\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/pariswells.com\/blog"},{"label":"Random","link":"https:\/\/pariswells.com\/blog\/category\/random"},{"label":"Securing Apache to use Certificate Authentication auth_x509","link":"https:\/\/pariswells.com\/blog\/random\/securing-apache-to-use-certificate-authentication-auth_x509"}],"_links":{"self":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/2433","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/comments?post=2433"}],"version-history":[{"count":3,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/2433\/revisions"}],"predecessor-version":[{"id":6444,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/2433\/revisions\/6444"}],"wp:attachment":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/media?parent=2433"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/categories?post=2433"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/tags?post=2433"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}