{"id":11894,"date":"2014-02-25T14:56:47","date_gmt":"2014-02-25T09:26:47","guid":{"rendered":"https:\/\/2thenew.xyz\/blog\/?p=11894"},"modified":"2014-02-25T14:56:47","modified_gmt":"2014-02-25T09:26:47","slug":"http-authentication-using-nginx","status":"publish","type":"post","link":"https:\/\/2thenew.xyz\/blog\/http-authentication-using-nginx\/","title":{"rendered":"HTTP Authentication using Nginx"},"content":{"rendered":"<p>I got a requirement from one of my clients to setup a staging server that has a HTTP authentication, behind an ELB. but because of authentication it fails in the ELB health check. I did the following steps to configure it with HTTP authentication.<\/p>\n<ul>\n<li>Create a single PHP or HTML file and disable HTTP authentication for this file.<\/li>\n<li>In the configure health check section pass that file name in the Ping Path.<\/li>\n<li>ELB gets the response on configured Ping Path because authentication is disabled for this file.<\/li>\n<\/ul>\n<p>Few more tricks that can be used to setup HTTP authentication using nginx.<\/p>\n<p><strong>Create a htpasswd file with username : myuser &amp; password :\u00a0mypassword<\/strong><\/p>\n<p>Create a htpasswd that contains username and encrypted password. To create that file we need to install php CLI tools or it can be created from some other tools too.<\/p>\n<p>[shell]sudo apt-get install php5-cli<br \/>\nphp -a<br \/>\nphp &gt; echo crypt(&#8216;mypassword&#8217;, base64_encode(&#8216;mypassword&#8217;));<br \/>\nbX6j7x3Ep6RnU<br \/>\necho &#8216;myuser:bX6j7x3Ep6RnU&#8217; &gt;&gt; \/etc\/nginx\/htpasswd[\/shell]<\/p>\n<p><strong>Basic password protection<\/strong><\/p>\n<p>Add below code into the Nginx site configuration file that will enable authentication on the complete site.<\/p>\n<p>[shell]location \/ {<br \/>\n                  auth_basic  &quot;Restricted&quot;;<br \/>\n                  auth_basic_user_file  \/etc\/nginx\/htpasswd;<br \/>\n}[\/shell]<\/p>\n<p><span style=\"font-family: 'Courier 10 Pitch', Courier, monospace;font-size: 13px;font-style: normal;line-height: 1.5\">\u00a0<\/span><\/p>\n<p><strong>Open-access for a single IP, password-protect for everyone else<\/strong><\/p>\n<p>This will allow you to disable password for a single IP and enable password for the others.\u00a0This method is great during project development when you want to give access for a single IP.<\/p>\n<div>[shell]location \/ \u00a0{<br \/>\n                   satisfy any<br \/>\n                   allow \u00a0*.*.*.* ;<br \/>\n                   deny all;<br \/>\n                   auth_basic &quot;Restricted&quot;;<br \/>\n                   auth_basic_user_file \/etc\/nginx\/htpasswd;<br \/>\n}[\/shell]<\/p>\n<\/div>\n<p><strong>Open access for multiple IPs, password-protect for everyone else<\/strong><\/p>\n<p>That will allow you to disable password protection for multiple IPs.<\/p>\n<div>[shell]<br \/>\nlocation \/ \u00a0{<br \/>\n            satisfy any;<br \/>\n            allow \u00a0*.*.*.* ;<br \/>\n            allow \u00a0*.*.*.* ;<br \/>\n            deny all;<br \/>\n            auth_basic &quot;Restricted&quot;;<br \/>\n            auth_basic_user_file \/etc\/nginx\/htpasswd;<br \/>\n}[\/shell]<\/p>\n<\/div>\n<div>\n<p><strong>Password protection for everything except a single file<\/strong><\/p>\n<p>In a case you want to disable password protection for a single file only. I have used this technique countless times.<\/p>\n<div>[shell]<br \/>\nlocation \/ \u00a0{<br \/>\n            auth_basic &quot;Restricted&quot;;<br \/>\n            auth_basic_user_file \/etc\/nginx\/htpasswd;<br \/>\n            location \u00a0 \u00a0\/sample\/abc.html {<br \/>\n                                         auth_basic off;<br \/>\n            }<br \/>\n}[\/shell]<\/p>\n<p><strong>Password protect a single file<\/strong><\/p>\n<p>This will allow access to a single file while password-protecting everything else<\/p>\n<div>[shell]<br \/>\nlocation \/ \u00a0{<br \/>\n      \u00a0     location \/sample\/abc.html \u00a0 {<br \/>\n                                        auth_basic &quot;Restricted&quot;;<br \/>\n                                        auth_basic_user_file \/etc\/nginx\/htpasswd;<br \/>\n            }<br \/>\n}[\/shell]<\/p>\n<p><strong>Password protect a folder<\/strong><\/p>\n<p>If you have a use case to protect multiple files in a folder, So instead of protect multiple files you can protect that complete folder directly.<\/p>\n<p>[shell]<br \/>\nlocation \/ \u00a0{<br \/>\n            location \/sample\/ \u00a0{<br \/>\n                  \u00a0\u00a0 \u00a0\u00a0\u00a0\u00a0 \u00a0\u00a0\u00a0\u00a0 auth_basic &quot;Restricted&quot;;<br \/>\n                               auth_basic_user_file \/etc\/nginx\/htpasswd;<br \/>\n            }<br \/>\n}[\/shell]<\/p>\n<\/div>\n<\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>I got a requirement from one of my clients to setup a staging server that has a HTTP authentication, behind an ELB. but because of authentication it fails in the ELB health check. I did the following steps to configure it with HTTP authentication. Create a single PHP or HTML file and disable HTTP authentication [&hellip;]<\/p>\n","protected":false},"author":678,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":14,"footnotes":""},"categories":[1],"tags":[1337,260,1336],"class_list":["post-11894","post","type-post","status-publish","format-standard","hentry","category-technology","tag-http-authentication","tag-linux","tag-nginx"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"I got a requirement from one of my clients to setup a staging server that has a HTTP authentication, behind an ELB. but because of authentication it fails in the ELB health check. I did the following steps to configure it with HTTP authentication. Create a single PHP or HTML file and disable HTTP authentication\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Tejprakash Sharma\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.xyz\/blog\/http-authentication-using-nginx\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"HTTP Authentication using Nginx | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"I got a requirement from one of my clients to setup a staging server that has a HTTP authentication, behind an ELB. but because of authentication it fails in the ELB health check. I did the following steps to configure it with HTTP authentication. Create a single PHP or HTML file and disable HTTP authentication\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.xyz\/blog\/http-authentication-using-nginx\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"HTTP Authentication using Nginx | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"I got a requirement from one of my clients to setup a staging server that has a HTTP authentication, behind an ELB. but because of authentication it fails in the ELB health check. I did the following steps to configure it with HTTP authentication. Create a single PHP or HTML file and disable HTTP authentication\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/http-authentication-using-nginx\\\/#article\",\"name\":\"HTTP Authentication using Nginx | TO THE NEW Blog\",\"headline\":\"HTTP Authentication using Nginx\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/tejprakash-2\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2014-02-25T14:56:47+05:30\",\"dateModified\":\"2014-02-25T14:56:47+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":4,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/http-authentication-using-nginx\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/http-authentication-using-nginx\\\/#webpage\"},\"articleSection\":\"Technology, HTTP Authentication, Linux, nginx\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/http-authentication-using-nginx\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/http-authentication-using-nginx\\\/#listItem\",\"name\":\"HTTP Authentication using Nginx\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/http-authentication-using-nginx\\\/#listItem\",\"position\":3,\"name\":\"HTTP Authentication using Nginx\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/tejprakash-2\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/tejprakash-2\\\/\",\"name\":\"Tejprakash Sharma\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/http-authentication-using-nginx\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/93667a28-278f-4ea1-a81a-6bbd18ed1db9_tejprakash.sharma@tothenew.com.jpg\",\"width\":96,\"height\":96,\"caption\":\"Tejprakash Sharma\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/http-authentication-using-nginx\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/http-authentication-using-nginx\\\/\",\"name\":\"HTTP Authentication using Nginx | TO THE NEW Blog\",\"description\":\"I got a requirement from one of my clients to setup a staging server that has a HTTP authentication, behind an ELB. but because of authentication it fails in the ELB health check. I did the following steps to configure it with HTTP authentication. Create a single PHP or HTML file and disable HTTP authentication\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/http-authentication-using-nginx\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/tejprakash-2\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/tejprakash-2\\\/#author\"},\"datePublished\":\"2014-02-25T14:56:47+05:30\",\"dateModified\":\"2014-02-25T14:56:47+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"HTTP Authentication using Nginx | TO THE NEW Blog","description":"I got a requirement from one of my clients to setup a staging server that has a HTTP authentication, behind an ELB. but because of authentication it fails in the ELB health check. I did the following steps to configure it with HTTP authentication. Create a single PHP or HTML file and disable HTTP authentication","canonical_url":"https:\/\/2thenew.xyz\/blog\/http-authentication-using-nginx\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.xyz\/blog\/http-authentication-using-nginx\/#article","name":"HTTP Authentication using Nginx | TO THE NEW Blog","headline":"HTTP Authentication using Nginx","author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/tejprakash-2\/#author"},"publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"},"datePublished":"2014-02-25T14:56:47+05:30","dateModified":"2014-02-25T14:56:47+05:30","inLanguage":"en-US","commentCount":4,"mainEntityOfPage":{"@id":"https:\/\/2thenew.xyz\/blog\/http-authentication-using-nginx\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/http-authentication-using-nginx\/#webpage"},"articleSection":"Technology, HTTP Authentication, Linux, nginx"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.xyz\/blog\/http-authentication-using-nginx\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.xyz\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/2thenew.xyz\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/http-authentication-using-nginx\/#listItem","name":"HTTP Authentication using Nginx"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/http-authentication-using-nginx\/#listItem","position":3,"name":"HTTP Authentication using Nginx","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.xyz\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.xyz\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.xyz\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.xyz\/blog\/author\/tejprakash-2\/#author","url":"https:\/\/2thenew.xyz\/blog\/author\/tejprakash-2\/","name":"Tejprakash Sharma","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.xyz\/blog\/http-authentication-using-nginx\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/93667a28-278f-4ea1-a81a-6bbd18ed1db9_tejprakash.sharma@tothenew.com.jpg","width":96,"height":96,"caption":"Tejprakash Sharma"}},{"@type":"WebPage","@id":"https:\/\/2thenew.xyz\/blog\/http-authentication-using-nginx\/#webpage","url":"https:\/\/2thenew.xyz\/blog\/http-authentication-using-nginx\/","name":"HTTP Authentication using Nginx | TO THE NEW Blog","description":"I got a requirement from one of my clients to setup a staging server that has a HTTP authentication, behind an ELB. but because of authentication it fails in the ELB health check. I did the following steps to configure it with HTTP authentication. Create a single PHP or HTML file and disable HTTP authentication","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.xyz\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.xyz\/blog\/http-authentication-using-nginx\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/tejprakash-2\/#author"},"creator":{"@id":"https:\/\/2thenew.xyz\/blog\/author\/tejprakash-2\/#author"},"datePublished":"2014-02-25T14:56:47+05:30","dateModified":"2014-02-25T14:56:47+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.xyz\/blog\/#website","url":"https:\/\/2thenew.xyz\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.xyz\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"HTTP Authentication using Nginx | TO THE NEW Blog","og:description":"I got a requirement from one of my clients to setup a staging server that has a HTTP authentication, behind an ELB. but because of authentication it fails in the ELB health check. I did the following steps to configure it with HTTP authentication. Create a single PHP or HTML file and disable HTTP authentication","og:url":"https:\/\/2thenew.xyz\/blog\/http-authentication-using-nginx\/","og:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"HTTP Authentication using Nginx | TO THE NEW Blog","twitter:description":"I got a requirement from one of my clients to setup a staging server that has a HTTP authentication, behind an ELB. but because of authentication it fails in the ELB health check. I did the following steps to configure it with HTTP authentication. Create a single PHP or HTML file and disable HTTP authentication","twitter:image":"https:\/\/2thenew.xyz\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"11894","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"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":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"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":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 14:03:00","updated":"2024-02-29 09:03:13","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.xyz\/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:\/\/2thenew.xyz\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHTTP Authentication using Nginx\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.xyz\/blog"},{"label":"Technology","link":"https:\/\/2thenew.xyz\/blog\/category\/technology\/"},{"label":"HTTP Authentication using Nginx","link":"https:\/\/2thenew.xyz\/blog\/http-authentication-using-nginx\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/11894","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/users\/678"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/comments?post=11894"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/posts\/11894\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/media?parent=11894"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/categories?post=11894"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.xyz\/blog\/wp-json\/wp\/v2\/tags?post=11894"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}