{"id":245,"date":"2023-10-06T08:39:39","date_gmt":"2023-10-06T08:39:39","guid":{"rendered":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/?p=245"},"modified":"2023-10-13T09:23:50","modified_gmt":"2023-10-13T09:23:50","slug":"NGINX-Explained-Know-its-Working-What-is-it-Used-For","status":"publish","type":"post","link":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/245\/NGINX-Explained-Know-its-Working-and-What-is-it-Used-For.html","title":{"rendered":"NGINX Explained! Know its Working &#038; What is it Used For?"},"content":{"rendered":"<div class=\"kb-article-content\">\n<h2><span style=\"font-weight: 400;\"><strong><img loading=\"lazy\" decoding=\"async\" style=\"max-width: 100%;\" src=\"https:\/\/www.hostitsmart.com\/manage\/images\/kb\/265_Introduction-NGINX.png\" alt=\"Introduction NGINX\" width=\"650\" height=\"458\"><\/strong><\/span><\/h2>\n<h2><span style=\"font-weight: 400;\"><strong>Introduction<\/strong><\/span><\/h2>\n<p><span style=\"font-weight: 400;\">NGINX, pronounced as \u2018engine ex,\u2019 is a widely used open-source web server software officially released in October of 2004. Back then, web servers had a&nbsp;big challenge known as the C10k problem. C10k is the challenge of managing ten thousand connections at the same time.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">Though today web servers can manage a lot more than just ten thousand connections, until 2004, it was a&nbsp; problem that needed a solution. In 2002, Igor Sysoev, the creator of NGINX, started his project in an attempt to solve the C10k problem. <\/span><\/p>\n<p><span style=\"font-weight: 400;\">NGINX offers an event-driven and asynchronous architecture that is totally different from the traditional process-driven architecture, which makes it one of the most reliable servers for speed and scalability.<\/span><\/p>\n<h2><span style=\"font-weight: 400;\"><strong>What is NGINX?<\/strong><\/span><\/h2>\n<p><span style=\"font-weight: 400;\">NGINX is an open-source web server software that serves as a reverse proxy,&nbsp; HTTP load balancer, and email proxy for IMAP, POP3, and SMTP. NGINX&nbsp; manages a high number of connections by creating a process pool that can be easily shared among multiple connections within the network.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">It utilizes the resource better by allocating resources to the process whenever a request is made; this allocation system helps the resources easily handle extensive connections.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">NGINX works very well as an HTTP load balancer that allows you to use multiple different load-sharing mechanisms. It also helps in the overall security and protection of your website by helping you set up a secure connection between your data centers and the outside network.&nbsp;&nbsp;<\/span><\/p>\n<hr style=\"border-top: 2px dotted black;\">\n<p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/226\/What-is-FTP-and-How-to-Create-an-FTP-Account-In-cPanel.html\"><strong>What is FTP &amp; How to Create an FTP Account In cPanel?<\/strong><\/a><\/p>\n<hr style=\"border-top: 2px dotted black;\">\n<h2><strong>How does NGINX Work?<\/strong><\/h2>\n<p><strong><img loading=\"lazy\" decoding=\"async\" style=\"max-width: 100%; height: auto;\" src=\"https:\/\/www.hostitsmart.com\/manage\/images\/kb\/310_How-does-NGINX-Work.png\" alt=\"How does NGINX Work\" width=\"850\" height=\"1000\"><\/strong><\/p>\n<p><strong><span style=\"font-weight: 400;\">In a traditional web server, when a request is made to open a webpage, the browser contacts the web server of that requested website then looks for the requested information and sends it back to the browser. This is a single-thread operation that a traditional web server carries out, as it creates a single thread&nbsp;for every request.<\/span><\/strong><\/p>\n<p><strong><span style=\"font-weight: 400;\">Whereas NGINX is more efficient because of its asynchronous, event-driven architecture. It means that similar requests, similar threads, are managed under one worker process, and each worker process contains smaller units called worker connections. Similar requests are considered similar events and then are handled by a single worker process; that is, all the concurrent requests are handled by a whole unit of worker connections, which then delivers the requests to a worker process. Then the worker process sends the requests to the master process, which provides the result of those requests.&nbsp; <\/span><\/strong><\/p>\n<p><strong><span style=\"font-weight: 400;\">One worker connection can take care of up to 1024 similar requests. Because of this efficiency, NGINX can process thousands of requests without any difficulties.<\/span><\/strong><\/p>\n<p><strong><span style=\"font-weight: 400;\">That\u2019s the reason why high-traffic websites like Netflix, Adobe, WordPress, etc., and search engine giants like Google, DuckDuckGo, etc., use NGINX. <\/span><\/strong><\/p>\n<hr style=\"border-top: 2px dotted black;\">\n<p><strong>Also Read:<\/strong> <a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/236\/Your-Practical-Guide-to-Creating--Users-and-Groups-in-CentOS7.html\"><strong>Your Practical Guide to Creating Users and Groups in CentOS7<\/strong><\/a><\/p>\n<hr style=\"border-top: 2px dotted black;\">\n<h2><strong>Pros &amp; Cons of NGINX<\/strong><\/h2>\n<h3><strong>Pros:<\/strong><\/h3>\n<ul style=\"list-style-type: square;\">\n<li><strong><span style=\"font-weight: 400;\">Consistent written code base.<\/span><\/strong><\/li>\n<li><strong><span style=\"font-weight: 400;\">Modern Design and friendly configuration format.<\/span><\/strong><\/li>\n<li><strong><span style=\"font-weight: 400;\">Event-based and efficient in handling multiple connections without having overhead due to context switching.<\/span><\/strong><\/li>\n<li><strong><span style=\"font-weight: 400;\">Faster websites.<\/span><\/strong><\/li>\n<li><strong><span style=\"font-weight: 400;\">Uses less memory and resources.<\/span><\/strong><\/li>\n<li><strong><span style=\"font-weight: 400;\">Compatible with commonly used web applications like ruby, python, etc.<\/span><\/strong><\/li>\n<li><strong><span style=\"font-weight: 400;\">Helps in transforming dynamic content into static content.<\/span><\/strong><\/li>\n<li><strong><span style=\"font-weight: 400;\">Handles thousands of concurrent connections at the same time efficiently.<\/span><\/strong><\/li>\n<li><strong><span style=\"font-weight: 400;\">Helps in Google ranking.<\/span><\/strong><\/li>\n<\/ul>\n<h3><strong>Cons:<\/strong><\/h3>\n<ul style=\"list-style-type: square;\">\n<li><strong><span style=\"font-weight: 400;\">Small community support as compared to Apache.<\/span><\/strong><\/li>\n<li><strong><span style=\"font-weight: 400;\">Lesser modules and extensions as compared to Apache.<\/span><\/strong><\/li>\n<li><strong><span style=\"font-weight: 400;\">Less likely to be preferred due to small community support.<\/span><\/strong><\/li>\n<\/ul>\n<hr style=\"border-top: 2px dotted black;\">\n<p><strong>Also Read: <\/strong><a href=\"https:\/\/www.hostitsmart.com\/manage\/knowledgebase\/243\/A-brief-guide-on-how-to-stop-and-disable-Firewalled-in-CentOS-7.html\"><strong>A brief guide on how to stop and disable Firewalled in CentOS 7<\/strong><\/a><\/p>\n<hr style=\"border-top: 2px dotted black;\">\n<h2><strong>When to use NGINX?<\/strong><\/h2>\n<p><strong><span style=\"font-weight: 400;\">NGINX is better in performance and efficiency than any of its competitors. But when to use NGINX? Its answer is simple.<\/span><\/strong><\/p>\n<p><strong><span style=\"font-weight: 400;\">It is appropriate to use if you have an intermediate experience in web servers and websites. The sole reason is that NGINX has small community support, and if you are a beginner and you face any problem, it may take more time to get a&nbsp; solution than on Apache.<\/span><\/strong><\/p>\n<p><strong><span style=\"font-weight: 400;\">Apache has a bigger community that can help you resolve your problem almost instantly. But, if you have an intermediate level of experience and can download the required modules and extensions, you are good to go to opt for NGINX, as it is faster and more efficient than Apache.<\/span><\/strong><\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Introduction NGINX, pronounced as \u2018engine ex,\u2019 is a widely used open-source web server software officially released in October of 2004. Back then, web servers had a&nbsp;big challenge known as the C10k problem. C10k is the challenge of managing ten thousand connections at the same time. Though today web servers can manage a lot more than [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[50],"tags":[],"class_list":["post-245","post","type-post","status-publish","format-standard","hentry","category-website"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v21.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>NGINX Explained! Know its Working &amp; What is it Used For?<\/title>\n<meta name=\"description\" content=\"Have you ever come across the term \u201cNGINX\u201d and wondered what it means? &amp; How its works? Stay with us to the end &amp; you\u2019ll leave with a smile and increased knowledge.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/245\/NGINX-Explained-Know-its-Working-and-What-is-it-Used-For.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"NGINX Explained! Know its Working &amp; What is it Used For?\" \/>\n<meta property=\"og:description\" content=\"Have you ever come across the term \u201cNGINX\u201d and wondered what it means? &amp; How its works? Stay with us to the end &amp; you\u2019ll leave with a smile and increased knowledge.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/245\/NGINX-Explained-Know-its-Working-and-What-is-it-Used-For.html\" \/>\n<meta property=\"og:site_name\" content=\"Host IT Smart Knowledge base\" \/>\n<meta property=\"article:published_time\" content=\"2023-10-06T08:39:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-13T09:23:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.hostitsmart.com\/manage\/images\/kb\/265_Introduction-NGINX.png\" \/>\n<meta name=\"author\" content=\"Admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/245\/NGINX-Explained-Know-its-Working-and-What-is-it-Used-For.html#article\",\"isPartOf\":{\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/245\/NGINX-Explained-Know-its-Working-and-What-is-it-Used-For.html\"},\"author\":{\"name\":\"Admin\",\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/8b538056beea86b043adbd20df3a6ee9\"},\"headline\":\"NGINX Explained! Know its Working &#038; What is it Used For?\",\"datePublished\":\"2023-10-06T08:39:39+00:00\",\"dateModified\":\"2023-10-13T09:23:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/245\/NGINX-Explained-Know-its-Working-and-What-is-it-Used-For.html\"},\"wordCount\":716,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#organization\"},\"articleSection\":[\"Website\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/245\/NGINX-Explained-Know-its-Working-and-What-is-it-Used-For.html#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/245\/NGINX-Explained-Know-its-Working-and-What-is-it-Used-For.html\",\"url\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/245\/NGINX-Explained-Know-its-Working-and-What-is-it-Used-For.html\",\"name\":\"NGINX Explained! Know its Working & What is it Used For?\",\"isPartOf\":{\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#website\"},\"datePublished\":\"2023-10-06T08:39:39+00:00\",\"dateModified\":\"2023-10-13T09:23:50+00:00\",\"description\":\"Have you ever come across the term \u201cNGINX\u201d and wondered what it means? & How its works? Stay with us to the end & you\u2019ll leave with a smile and increased knowledge.\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/245\/NGINX-Explained-Know-its-Working-and-What-is-it-Used-For.html\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#website\",\"url\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/\",\"name\":\"Host IT Smart Knowledge base\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#organization\",\"name\":\"Host IT Smart Knowledge base\",\"url\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/logo\/image\/\",\"url\":\"\",\"contentUrl\":\"\",\"width\":240,\"height\":80,\"caption\":\"Host IT Smart Knowledge base\"},\"image\":{\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/8b538056beea86b043adbd20df3a6ee9\",\"name\":\"Admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/17348df3a33347d3945161d87b752de1d7a7ec25dcbe15baacbd3b8a35367f66?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/17348df3a33347d3945161d87b752de1d7a7ec25dcbe15baacbd3b8a35367f66?s=96&d=mm&r=g\",\"caption\":\"Admin\"},\"sameAs\":[\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/\"],\"url\":\"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/author\/admin\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"NGINX Explained! Know its Working & What is it Used For?","description":"Have you ever come across the term \u201cNGINX\u201d and wondered what it means? & How its works? Stay with us to the end & you\u2019ll leave with a smile and increased knowledge.","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:\/\/new.hostitsmart.com\/manage\/knowledgebase\/245\/NGINX-Explained-Know-its-Working-and-What-is-it-Used-For.html","og_locale":"en_US","og_type":"article","og_title":"NGINX Explained! Know its Working & What is it Used For?","og_description":"Have you ever come across the term \u201cNGINX\u201d and wondered what it means? & How its works? Stay with us to the end & you\u2019ll leave with a smile and increased knowledge.","og_url":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/245\/NGINX-Explained-Know-its-Working-and-What-is-it-Used-For.html","og_site_name":"Host IT Smart Knowledge base","article_published_time":"2023-10-06T08:39:39+00:00","article_modified_time":"2023-10-13T09:23:50+00:00","og_image":[{"url":"https:\/\/www.hostitsmart.com\/manage\/images\/kb\/265_Introduction-NGINX.png"}],"author":"Admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/245\/NGINX-Explained-Know-its-Working-and-What-is-it-Used-For.html#article","isPartOf":{"@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/245\/NGINX-Explained-Know-its-Working-and-What-is-it-Used-For.html"},"author":{"name":"Admin","@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/8b538056beea86b043adbd20df3a6ee9"},"headline":"NGINX Explained! Know its Working &#038; What is it Used For?","datePublished":"2023-10-06T08:39:39+00:00","dateModified":"2023-10-13T09:23:50+00:00","mainEntityOfPage":{"@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/245\/NGINX-Explained-Know-its-Working-and-What-is-it-Used-For.html"},"wordCount":716,"commentCount":0,"publisher":{"@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#organization"},"articleSection":["Website"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/245\/NGINX-Explained-Know-its-Working-and-What-is-it-Used-For.html#respond"]}]},{"@type":"WebPage","@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/245\/NGINX-Explained-Know-its-Working-and-What-is-it-Used-For.html","url":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/245\/NGINX-Explained-Know-its-Working-and-What-is-it-Used-For.html","name":"NGINX Explained! Know its Working & What is it Used For?","isPartOf":{"@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#website"},"datePublished":"2023-10-06T08:39:39+00:00","dateModified":"2023-10-13T09:23:50+00:00","description":"Have you ever come across the term \u201cNGINX\u201d and wondered what it means? & How its works? Stay with us to the end & you\u2019ll leave with a smile and increased knowledge.","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/245\/NGINX-Explained-Know-its-Working-and-What-is-it-Used-For.html"]}]},{"@type":"WebSite","@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#website","url":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/","name":"Host IT Smart Knowledge base","description":"","publisher":{"@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#organization","name":"Host IT Smart Knowledge base","url":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/logo\/image\/","url":"","contentUrl":"","width":240,"height":80,"caption":"Host IT Smart Knowledge base"},"image":{"@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/8b538056beea86b043adbd20df3a6ee9","name":"Admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/17348df3a33347d3945161d87b752de1d7a7ec25dcbe15baacbd3b8a35367f66?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/17348df3a33347d3945161d87b752de1d7a7ec25dcbe15baacbd3b8a35367f66?s=96&d=mm&r=g","caption":"Admin"},"sameAs":["https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/"],"url":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/author\/admin"}]}},"_links":{"self":[{"href":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/245","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/comments?post=245"}],"version-history":[{"count":1,"href":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/245\/revisions"}],"predecessor-version":[{"id":575,"href":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/posts\/245\/revisions\/575"}],"wp:attachment":[{"href":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/media?parent=245"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/categories?post=245"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/new.hostitsmart.com\/manage\/knowledgebase\/wp-json\/wp\/v2\/tags?post=245"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}