{"id":1672,"date":"2018-03-22T15:42:14","date_gmt":"2018-03-22T14:42:14","guid":{"rendered":"https:\/\/www.nullalo.com\/?p=1672"},"modified":"2025-10-22T10:15:26","modified_gmt":"2025-10-22T08:15:26","slug":"generare-un-certificato-auto-firmato-valido-per-apache-e-chrome","status":"publish","type":"post","link":"https:\/\/www.nullalo.com\/en\/generating-a-valid-self-signed-certificate-for-apache-and-chrome\/","title":{"rendered":"Generating a valid self-signed certificate for Apache and Chrome"},"content":{"rendered":"<p><\/p>\n<p style=\"text-align: justify;\">In our <a href=\"https:\/\/www.nullalo.com\/?p=1568\">previous article<\/a>, we saw how to generate a <strong>self-signed certificate for localhost<\/strong> website development, and how to do it so that Google Chrome browser won&#8217;t produce the well-known &#8220;<em><strong>NET::ERR_CERT_AUTHORITY_INVALID&#8221;\u00a0\u00a0<\/strong><\/em>notice.<\/p>\n<p style=\"text-align: justify;\">Unfortunately, for Chrome 58 and later another warning is waiting for you. This time it&#8217;s &#8220;<em><strong>NET::ERR_CERT_COMMON_NAME_INVALID<\/strong><\/em>&#8221; or &#8220;<strong><em>Your connection is not private<\/em><\/strong>&#8220;, since (as you can read <a href=\"https:\/\/support.google.com\/chrome\/a\/answer\/7391219?hl=en\">here<\/a> from Google) &#8220;<em>only the subjectAlternativeName extension, not commonName, is used to match the domain name and site certificate<\/em>&#8220;.<\/p>\n<p style=\"text-align: justify;\">So we have to reissue our self-signed certificate in order to include the <strong>subjectAlternativeName<\/strong> as well.<\/p>\n<p style=\"text-align: justify;\">For this purpose, we&#8217;ll be using <strong>OpenSSL<\/strong> and we&#8217;ll see how to install and configurare this brand new certificate in Apache.<\/p>\n<h2>OpenSSL configuration<\/h2>\n<p style=\"text-align: justify;\">The first thing to do is install OpenSSL. At the time of writing, I downloaded <strong>OpenSSL v1.1.0g<\/strong>. If you are on Windows, you can download the installer at the following URL:<\/p>\n<p style=\"text-align: center;\"><a href=\"http:\/\/slproweb.com\/download\/Win32OpenSSL-1_1_0g.exe\">Win32 OpenSSL v1.1.0g<\/a><\/p>\n<p style=\"text-align: justify;\">but of course you can use the same version on Linux as well, depending on your distribution (CentOS, Debian, Ubuntu and so on).<\/p>\n<p style=\"text-align: justify;\">Once installed OpenSSL, we need to modify a little bit its configuration file, in order to handle the <strong>Subject Alternative Name<\/strong> (<strong>SAN<\/strong>).<\/p>\n<p style=\"text-align: justify;\">So, assuming that <em><strong>nullalo.local<\/strong><\/em> is the local domain alias you need the self-signed certificate for, edit <strong>\/bin\/openssl.cfg<\/strong> file and add the following section (i.e. at the bottom of the file or at the end of another section):<\/p>\n<pre class=\"brush: plain; title: ; notranslate\" title=\"\">\r\n\r\n&#x5B;SAN]\r\nsubjectAltName=DNS:nullalo.local,DNS:www.nullalo.local\r\n\r\n<\/pre>\n<p style=\"text-align: justify;\">Here, we created two alternative names, <em><strong>nullalo.local<\/strong><\/em> and <em><strong>www.nullalo.local\u00a0<\/strong><\/em>to show you the right syntax to add multiple <strong>DNS<\/strong> (<strong>Domain Name System<\/strong>), but if you just use a single DNS (no ServerAlias in Apache), the first entry will be enough:<\/p>\n<pre class=\"brush: plain; title: ; notranslate\" title=\"\">\r\n\r\n&#x5B;SAN]\r\nsubjectAltName=DNS:nullalo.local\r\n\r\n<\/pre>\n<p style=\"text-align: justify;\">Now, all you have to do is generate the private key and the certificate using OpenSSL.<\/p>\n<p><!--nextpage--><\/p>\n<h2>Certificate generation<\/h2>\n<p style=\"text-align: justify;\">Assuming that you are on Windows, you have installed OpenSSL in <em><strong>C:\\OpenSSL-Win32\\<\/strong><\/em> and your local domain name is <em><strong>nullalo.local<\/strong><\/em>, you can issue the following commands at the prompt:<\/p>\n<pre class=\"brush: plain; title: ; notranslate\" title=\"\">\r\n\r\nC:\\OpenSSL-Win32\\bin\\openssl.exe req -x509 -config C:\\OpenSSL-Win32\\bin\\openssl.cfg -nodes -days 365 -newkey rsa:2048 -reqexts SAN -extensions SAN -keyout nullalo.local.key -out nullalo.local.crt\r\n\r\n<\/pre>\n<p style=\"text-align: justify;\">Let&#8217;s see the meaning of this command&#8217;s parameters:<\/p>\n<ul>\n<li style=\"text-align: justify;\"><strong>x509<\/strong> is the certificate standard (X.509 v3)<\/li>\n<li style=\"text-align: justify;\"><strong>nodes<\/strong> stands for &#8220;No DES&#8221;, meaning your private key will not be encrypted in a PKCS#12 file with\u00a03DES-CBC algorithm<\/li>\n<li><strong>days<\/strong> is the number of days of validity from the current date (in the example, 365 days &#8211; 1 year from now)<\/li>\n<li><strong>newkey<\/strong>\u00a0generates a new RSA key of &#8216;bits&#8217; in size (in the example, 2048 bits)<\/li>\n<li><strong>reqexts<\/strong>\u00a0specifies request extension section (in our case, SAN &#8211; override value in config file)<\/li>\n<li><strong>extensions\u00a0<\/strong>specifies certificate extension section (SAN, again &#8211; override value in config file)<\/li>\n<li><strong>keyout<\/strong> outputs private key to a file<\/li>\n<li><strong>out<\/strong> outputs certificate to a file<\/li>\n<\/ul>\n<p style=\"text-align: justify;\">You&#8217;ll be asked for some informations about the certificate: it is very important, for previous Google Chrome version and other browsers, that when asked for <strong>Common Name<\/strong>, you enter your primary DNS (in this case, nullalo.local).<\/p>\n<p style=\"text-align: justify;\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-1679\" src=\"\/wp-content\/uploads\/2018\/03\/openssl_certificate_generation.png\" alt=\"OpenSSL certificate generation\" width=\"677\" height=\"426\" srcset=\"https:\/\/www.nullalo.com\/wp-content\/uploads\/2018\/03\/openssl_certificate_generation.png 677w, https:\/\/www.nullalo.com\/wp-content\/uploads\/2018\/03\/openssl_certificate_generation-300x189.png 300w, https:\/\/www.nullalo.com\/wp-content\/uploads\/2018\/03\/openssl_certificate_generation-360x227.png 360w\" sizes=\"auto, (max-width: 677px) 100vw, 677px\" \/><\/p>\n<p style=\"text-align: justify;\">This command will generate, in the current directory, two files: the private key (<em><strong>nullalo.local.key<\/strong><\/em>) and the self-signed certificate (<em><strong>nullalo.local.crt<\/strong><\/em>).<\/p>\n<p><!--nextpage--><\/p>\n<h2>Certificate installation<\/h2>\n<p style=\"text-align: justify;\">After generating our valid self-signed certificate, it&#8217;s time to install and configure it under Apache.<\/p>\n<p style=\"text-align: justify;\">For testing purposes, I will show the procedure using <strong>XAMPP for Windows<\/strong>, but it&#8217;s of course valid for all Apache 2.4 instances.<\/p>\n<p style=\"text-align: justify;\">So, assuming that your Apache folder is located under c:\\xampp\\apache, let&#8217;s <strong>copy nullalo.local.key file in c:\\xampp\\apache\\conf\\ssl.key\\ folder<\/strong> and <strong>nullalo.local.crt in c:\\xampp\\apache\\conf\\ssl.crt\\<\/strong>.<\/p>\n<p>Next, open Apache configuration file for your domain (in XAMPP, either c:\\xampp\\apache\\conf\\extra\\httpd-ssl.conf for localhost or\u00a0c:\\xampp\\apache\\conf\\extra\\httpd-vhosts.conf for virtual hosts) and add the following three lines (<strong>SSLEngine<\/strong>, <strong>SSLCertificateFile<\/strong> and <strong>SSLCertificateKeyFile<\/strong>):<\/p>\n<pre class=\"brush: plain; title: ; notranslate\" title=\"\">\r\n\r\n&lt;VirtualHost nullalo.local:443&gt;\r\n...\r\nSSLEngine on\r\nSSLCertificateFile &quot;conf\/ssl.crt\/nullalo.local.crt&quot;\r\nSSLCertificateKeyFile &quot;conf\/ssl.key\/nullalo.local.key&quot;\r\n&lt;\/VirtualHost&gt;\r\n\r\n<\/pre>\n<p style=\"text-align: justify;\">Now, simply restart Apache and try to open <strong>https:\/\/nullalo.local<\/strong> in Google Chrome (and any other browser you use): you should see the long-awaited green lock in the navigation bar!<\/p>\n<p style=\"text-align: justify;\">One last note: <strong>if you use any antivirus\/firewall software<\/strong>, it will still throw you warning for your self-signed certificate, but in this case you can tell the software to <strong>always allow that certificate<\/strong>, it won&#8217;t be asked anymore.<\/p>\n<p style=\"text-align: justify;\">Finally, if you still got error from Chrome, you can install the generated certificate on your machine, between the trusted ones, as already explained <a href=\"https:\/\/www.nullalo.com\/?p=1568\">here<\/a>.<\/p>\n<p><\/p>","protected":false},"excerpt":{"rendered":"<p>How to use OpenSSL to generate a valid self-signed certificate for Apache and Chrome 58+ without having NET::ERR_CERT_AUTHORITY_INVALID or NET::ERR_CERT_COMMON_NAME_INVALID warnings<\/p>\n","protected":false},"author":2,"featured_media":1572,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[3,4,6,46],"tags":[136,32,31,132,134,133],"class_list":["post-1672","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-cuisine","category-reviews","category-uncategorized","category-strumenti-web","tag-apache","tag-chrome","tag-google","tag-ssl","tag-auto-firmato","tag-certificato"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Generating a valid self-signed certificate for Apache and Chrome - Nullalo!<\/title>\n<meta name=\"description\" content=\"How to use OpenSSL to generate a valid self-signed certificate for Apache and Chrome 58+ without having NET::ERR_CERT_AUTHORITY_INVALID or NET::ERR_CERT_COMMON_NAME_INVALID warnings\" \/>\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.nullalo.com\/?p=1672\" \/>\n<link rel=\"next\" href=\"https:\/\/www.nullalo.com\/2\/?p=1672\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Generating a valid self-signed certificate for Apache and Chrome - Nullalo!\" \/>\n<meta property=\"og:description\" content=\"How to use OpenSSL to generate a valid self-signed certificate for Apache and Chrome 58+ without having NET::ERR_CERT_AUTHORITY_INVALID or NET::ERR_CERT_COMMON_NAME_INVALID warnings\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.nullalo.com\/?p=1672\" \/>\n<meta property=\"og:site_name\" content=\"Nullalo!\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/nullalo\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/fulvio.sicurezza\" \/>\n<meta property=\"article:published_time\" content=\"2018-03-22T14:42:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-22T08:15:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.nullalo.com\/wp-content\/uploads\/2017\/04\/https.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1140\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Fulvio Sicurezza\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/FulvioSicurezza\" \/>\n<meta name=\"twitter:site\" content=\"@Nullalo\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Fulvio Sicurezza\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.nullalo.com\/?p=1672\",\"url\":\"https:\/\/www.nullalo.com\/?p=1672\",\"name\":\"[:it]Generare un certificato auto-firmato valido per Apache e Chrome[:en]Generating a valid self-signed certificate for Apache and Chrome[:] - Nullalo!\",\"isPartOf\":{\"@id\":\"https:\/\/www.nullalo.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.nullalo.com\/?p=1672#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.nullalo.com\/?p=1672#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.nullalo.com\/wp-content\/uploads\/2017\/04\/https.jpg\",\"datePublished\":\"2018-03-22T14:42:14+00:00\",\"dateModified\":\"2025-10-22T08:15:26+00:00\",\"author\":{\"@id\":\"https:\/\/www.nullalo.com\/#\/schema\/person\/fe9c2885376a6ab076e06461ae1b546c\"},\"description\":\"How to use OpenSSL to generate a valid self-signed certificate for Apache and Chrome 58+ without having NET::ERR_CERT_AUTHORITY_INVALID or NET::ERR_CERT_COMMON_NAME_INVALID warnings\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.nullalo.com\/?p=1672\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.nullalo.com\/?p=1672#primaryimage\",\"url\":\"https:\/\/www.nullalo.com\/wp-content\/uploads\/2017\/04\/https.jpg\",\"contentUrl\":\"https:\/\/www.nullalo.com\/wp-content\/uploads\/2017\/04\/https.jpg\",\"width\":1140,\"height\":600},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.nullalo.com\/#website\",\"url\":\"https:\/\/www.nullalo.com\/\",\"name\":\"Nullalo!\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.nullalo.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.nullalo.com\/#\/schema\/person\/fe9c2885376a6ab076e06461ae1b546c\",\"name\":\"Fulvio Sicurezza\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.nullalo.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.nullalo.com\/wp-content\/uploads\/2015\/02\/Fulvio-Sicurezza_avatar_1424711147-96x96.jpg\",\"contentUrl\":\"https:\/\/www.nullalo.com\/wp-content\/uploads\/2015\/02\/Fulvio-Sicurezza_avatar_1424711147-96x96.jpg\",\"caption\":\"Fulvio Sicurezza\"},\"sameAs\":[\"http:\/\/www.generalservice.na.it\",\"https:\/\/www.facebook.com\/fulvio.sicurezza\",\"http:\/\/it.linkedin.com\/in\/fulviosicurezza\",\"https:\/\/x.com\/https:\/\/twitter.com\/FulvioSicurezza\",\"https:\/\/www.youtube.com\/c\/FulvioSicurezzaIT\"],\"url\":\"https:\/\/www.nullalo.com\/en\/author\/f-sicurezza\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Generating a valid self-signed certificate for Apache and Chrome - Nullalo!","description":"How to use OpenSSL to generate a valid self-signed certificate for Apache and Chrome 58+ without having NET::ERR_CERT_AUTHORITY_INVALID or NET::ERR_CERT_COMMON_NAME_INVALID warnings","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.nullalo.com\/?p=1672","next":"https:\/\/www.nullalo.com\/2\/?p=1672","og_locale":"en_US","og_type":"article","og_title":"Generating a valid self-signed certificate for Apache and Chrome - Nullalo!","og_description":"How to use OpenSSL to generate a valid self-signed certificate for Apache and Chrome 58+ without having NET::ERR_CERT_AUTHORITY_INVALID or NET::ERR_CERT_COMMON_NAME_INVALID warnings","og_url":"https:\/\/www.nullalo.com\/?p=1672","og_site_name":"Nullalo!","article_publisher":"https:\/\/www.facebook.com\/nullalo","article_author":"https:\/\/www.facebook.com\/fulvio.sicurezza","article_published_time":"2018-03-22T14:42:14+00:00","article_modified_time":"2025-10-22T08:15:26+00:00","og_image":[{"width":1140,"height":600,"url":"https:\/\/www.nullalo.com\/wp-content\/uploads\/2017\/04\/https.jpg","type":"image\/jpeg"}],"author":"Fulvio Sicurezza","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/FulvioSicurezza","twitter_site":"@Nullalo","twitter_misc":{"Written by":"Fulvio Sicurezza","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.nullalo.com\/?p=1672","url":"https:\/\/www.nullalo.com\/?p=1672","name":"[:it]Generare un certificato auto-firmato valido per Apache e Chrome[:en]Generating a valid self-signed certificate for Apache and Chrome[:] - Nullalo!","isPartOf":{"@id":"https:\/\/www.nullalo.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.nullalo.com\/?p=1672#primaryimage"},"image":{"@id":"https:\/\/www.nullalo.com\/?p=1672#primaryimage"},"thumbnailUrl":"https:\/\/www.nullalo.com\/wp-content\/uploads\/2017\/04\/https.jpg","datePublished":"2018-03-22T14:42:14+00:00","dateModified":"2025-10-22T08:15:26+00:00","author":{"@id":"https:\/\/www.nullalo.com\/#\/schema\/person\/fe9c2885376a6ab076e06461ae1b546c"},"description":"How to use OpenSSL to generate a valid self-signed certificate for Apache and Chrome 58+ without having NET::ERR_CERT_AUTHORITY_INVALID or NET::ERR_CERT_COMMON_NAME_INVALID warnings","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.nullalo.com\/?p=1672"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.nullalo.com\/?p=1672#primaryimage","url":"https:\/\/www.nullalo.com\/wp-content\/uploads\/2017\/04\/https.jpg","contentUrl":"https:\/\/www.nullalo.com\/wp-content\/uploads\/2017\/04\/https.jpg","width":1140,"height":600},{"@type":"WebSite","@id":"https:\/\/www.nullalo.com\/#website","url":"https:\/\/www.nullalo.com\/","name":"Nullalo!","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.nullalo.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.nullalo.com\/#\/schema\/person\/fe9c2885376a6ab076e06461ae1b546c","name":"Fulvio Sicurezza","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.nullalo.com\/#\/schema\/person\/image\/","url":"https:\/\/www.nullalo.com\/wp-content\/uploads\/2015\/02\/Fulvio-Sicurezza_avatar_1424711147-96x96.jpg","contentUrl":"https:\/\/www.nullalo.com\/wp-content\/uploads\/2015\/02\/Fulvio-Sicurezza_avatar_1424711147-96x96.jpg","caption":"Fulvio Sicurezza"},"sameAs":["http:\/\/www.generalservice.na.it","https:\/\/www.facebook.com\/fulvio.sicurezza","http:\/\/it.linkedin.com\/in\/fulviosicurezza","https:\/\/x.com\/https:\/\/twitter.com\/FulvioSicurezza","https:\/\/www.youtube.com\/c\/FulvioSicurezzaIT"],"url":"https:\/\/www.nullalo.com\/en\/author\/f-sicurezza\/"}]}},"_links":{"self":[{"href":"https:\/\/www.nullalo.com\/en\/wp-json\/wp\/v2\/posts\/1672","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.nullalo.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.nullalo.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.nullalo.com\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.nullalo.com\/en\/wp-json\/wp\/v2\/comments?post=1672"}],"version-history":[{"count":1,"href":"https:\/\/www.nullalo.com\/en\/wp-json\/wp\/v2\/posts\/1672\/revisions"}],"predecessor-version":[{"id":1925,"href":"https:\/\/www.nullalo.com\/en\/wp-json\/wp\/v2\/posts\/1672\/revisions\/1925"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.nullalo.com\/en\/wp-json\/wp\/v2\/media\/1572"}],"wp:attachment":[{"href":"https:\/\/www.nullalo.com\/en\/wp-json\/wp\/v2\/media?parent=1672"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.nullalo.com\/en\/wp-json\/wp\/v2\/categories?post=1672"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.nullalo.com\/en\/wp-json\/wp\/v2\/tags?post=1672"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}