{"id":39189,"date":"2024-04-24T05:19:33","date_gmt":"2024-04-24T05:19:33","guid":{"rendered":"https:\/\/accuweb.cloud\/resource\/?post_type=faq&#038;p=39189"},"modified":"2026-02-19T07:39:19","modified_gmt":"2026-02-19T07:39:19","slug":"kubernetes-cluster-implementing-ingress","status":"publish","type":"faq","link":"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress","title":{"rendered":"Kubernetes Cluster: Guide to Implementing Ingresses"},"content":{"rendered":"<h2 class=\"ack-h2\">Kubernetes Cluster: Implementing Ingresses<\/h2>\n<p>In <a class=\"ack-link-color\" href=\"https:\/\/accuweb.cloud\/application\/kubernetes-hosting\" target=\"_blank\" rel=\"noopener\">Kubernetes<\/a>, an <a class=\"ack-link-color\" href=\"https:\/\/kubernetes.io\/docs\/concepts\/services-networking\/ingress\/#ingress-rules\" target=\"_blank\" rel=\"noopener\">Ingress<\/a> serves as a load balancer that facilitates external access to services, offers SSL termination, and supports name-based virtual hosting. It operates based on a set of rules (spec) that are applied to all incoming requests.<\/p>\n<div class=\"ack-formula\"><strong>Tip:<\/strong> In comparison to services exposed via NodePort, Ingress presents a more robust yet complex solution. It&#8217;s particularly beneficial when you need to expose multiple services under a single IP address. Moreover, Ingress is managed by a controller, which offers a plethora of built-in features such as SSL, authentication, and routing.<\/div>\n<div class=\"article-space\"><\/div>\n<p>By default, Traefik is the ingress controller for managing Ingresses in the <a class=\"ack-link-color\" href=\"https:\/\/accuweb.cloud\/application\/kubernetes-hosting\" target=\"_blank\" rel=\"noopener\">Kubernetes Cluster<\/a>, with options like HAProxy and NGINX available in the upcoming 1.15.5 package version. The controller monitors objects, interprets specs\/annotations, and converts them into redirection rules.<\/p>\n<div class=\"ack-formula\"><strong>Note:<\/strong> Once the ingress controller is selected during installation, it cannot be changed using Kubernetes management add-ons or other automation tools. However, manual configuration adjustments are still feasible, and our support team is available to assist if needed.<\/div>\n<div class=\"article-space\"><\/div>\n<p>An Ingress spec comprises a path rule, a backend service, and a port. Here&#8217;s an example of what your Ingress may look like:<\/p>\n<pre><code class=\"language-javascript\"><b>apiVersion:<\/b> extensions\/v1beta1\r\n<b>kind:<\/b> Ingress\r\n<b>metadata:<\/b>\r\n\u00a0\u00a0labels:\r\n\u00a0\u00a0\u00a0\u00a0app: myapp\r\n\u00a0\u00a0name: myapp\r\n\u00a0\u00a0annotations:\r\n\u00a0\u00a0\u00a0\u00a0kubernetes.io\/ingress.class: traefik\r\n\u00a0\u00a0\u00a0\u00a0ingress.kubernetes.io\/secure-backends: \"true\"\r\n\u00a0\u00a0\u00a0\u00a0traefik.frontend.rule.type: PathPrefixStrip\r\n<b>spec:<\/b>\r\n\u00a0\u00a0rules:\r\n\u00a0\u00a0- http:\r\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0paths:\r\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0- path: \/myapp\r\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0backend:\r\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0serviceName: myapp\r\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0servicePort: 8080<\/code><\/pre>\n<p>This example exposes the &#8220;myapp&#8221; service, which is connected to port 8080, on a path within your Kubernetes environment&#8217;s default domain, using the &#8220;\/myapp&#8221; suffix. This means that the service can be accessed via a URL like https:\/\/${envName}.${platformDomain.com}\/myapp. For further details on configuring ingress rules, including path- and subdomain-based routing, please consult the <a class=\"ack-link-color\" href=\"https:\/\/kubernetes.io\/docs\/concepts\/services-networking\/ingress\/#ingress-rules\" target=\"_blank\" rel=\"noopener\">official documentation<\/a>.<\/p>\n<div class=\"cta-btn-top-space\"><\/div>\n\t\t<div data-elementor-type=\"section\" data-elementor-id=\"38668\" class=\"elementor elementor-38668\" data-elementor-settings=\"{&quot;ha_cmc_init_switcher&quot;:&quot;no&quot;}\" data-elementor-post-type=\"elementor_library\">\n\t\t\t        <section class=\"elementor-section elementor-top-section elementor-element elementor-element-882321f elementor-section-boxed elementor-section-height-default elementor-section-height-default ct-header-fixed-none ct-row-max-none\" data-id=\"882321f\" data-element_type=\"section\" data-settings=\"{&quot;_ha_eqh_enable&quot;:false}\">\n            \n                        <div class=\"elementor-container elementor-column-gap-default \">\n                    <div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-7cc79cc\" data-id=\"7cc79cc\" data-element_type=\"column\">\n        <div class=\"elementor-widget-wrap elementor-element-populated\">\n                    \n        \t\t<div class=\"elementor-element elementor-element-e31b40f elementor-widget elementor-widget-shortcode\" data-id=\"e31b40f\" data-element_type=\"widget\" data-widget_type=\"shortcode.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<div class=\"elementor-shortcode\"><\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t            <\/div>\n        <\/div>\n                    <\/div>\n        <\/section>\n        \t\t<\/div>\n\t\t\n<div class=\"cta-btn-mob-space\"><\/div>\n","protected":false},"author":1,"featured_media":52879,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","class_list":["post-39189","faq","type-faq","status-publish","has-post-thumbnail","hentry","faq_topics-application-deployment","faq_topics-creating-ingresses","faq_topics-kb","faq_topics-kubernetes-hosting","faq_topics-product-documentation"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v20.10 (Yoast SEO v24.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Kubernetes Cluster: Guide to Implementing Ingresses<\/title>\n<meta name=\"description\" content=\"Learn how to use Kubernetes Ingresses to facilitate external access to your services, with SSL termination and name-based virtual hosting.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Kubernetes Cluster: Guide to Implementing Ingresses\" \/>\n<meta property=\"og:description\" content=\"Learn how to use Kubernetes Ingresses to facilitate external access to your services, with SSL termination and name-based virtual hosting.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress\" \/>\n<meta property=\"og:site_name\" content=\"AccuWeb Cloud\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-19T07:39:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress#article\",\"isPartOf\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress\"},\"author\":{\"name\":\"Jilesh Patadiya\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/#\/schema\/person\/a7a4cbe8405202b537509c757b588c58\"},\"headline\":\"Kubernetes Cluster: Guide to Implementing Ingresses\",\"datePublished\":\"2024-04-24T05:19:33+00:00\",\"dateModified\":\"2026-02-19T07:39:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress\"},\"wordCount\":263,\"publisher\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/#organization\"},\"image\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress#primaryimage\"},\"thumbnailUrl\":\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg\",\"inLanguage\":\"en-US\"},{\"@type\":[\"WebPage\",\"FAQPage\"],\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress\",\"url\":\"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress\",\"name\":\"Kubernetes Cluster: Guide to Implementing Ingresses\",\"isPartOf\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress#primaryimage\"},\"image\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress#primaryimage\"},\"thumbnailUrl\":\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg\",\"datePublished\":\"2024-04-24T05:19:33+00:00\",\"dateModified\":\"2026-02-19T07:39:19+00:00\",\"description\":\"Learn how to use Kubernetes Ingresses to facilitate external access to your services, with SSL termination and name-based virtual hosting.\",\"breadcrumb\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress#primaryimage\",\"url\":\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg\",\"contentUrl\":\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg\",\"width\":1280,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/accuweb.cloud\/resource\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Kubernetes Cluster: Guide to Implementing Ingresses\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/#website\",\"url\":\"https:\/\/accuweb.cloud\/resource\/\",\"name\":\"AccuWeb Cloud\",\"description\":\"Cutting Edge Cloud Computing\",\"publisher\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/accuweb.cloud\/resource\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/#organization\",\"name\":\"AccuWeb.Cloud\",\"url\":\"https:\/\/accuweb.cloud\/resource\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/04\/accuwebcloud_logo_black_tagline.jpg\",\"contentUrl\":\"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/04\/accuwebcloud_logo_black_tagline.jpg\",\"width\":156,\"height\":87,\"caption\":\"AccuWeb.Cloud\"},\"image\":{\"@id\":\"https:\/\/accuweb.cloud\/resource\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/#\/schema\/person\/a7a4cbe8405202b537509c757b588c58\",\"name\":\"Jilesh Patadiya\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/accuweb.cloud\/resource\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/2cea2bdb5bbabb771ee67e96acad7396f25cb1a0c360b9bc4a9ac40cea9cd8b2?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/2cea2bdb5bbabb771ee67e96acad7396f25cb1a0c360b9bc4a9ac40cea9cd8b2?s=96&d=mm&r=g\",\"caption\":\"Jilesh Patadiya\"},\"description\":\"Jilesh Patadiya, the visionary Co-Founder and Chief Technology Officer (CTO) behind AccuWeb.Cloud. Founder &amp; CTO at AccuWebHosting.com. He shares his web hosting insights on the AccuWeb.Cloud blog. He mostly writes on the latest web hosting trends, WordPress, storage technologies, and Windows and Linux hosting platforms.\",\"sameAs\":[\"https:\/\/accuweb.cloud\/resource\",\"https:\/\/www.facebook.com\/accuwebhosting\",\"https:\/\/www.instagram.com\/accuwebhosting\/\",\"https:\/\/www.linkedin.com\/company\/accuwebhosting\/\",\"https:\/\/x.com\/accuwebhosting\",\"https:\/\/www.youtube.com\/c\/Accuwebhosting\"],\"url\":\"https:\/\/accuweb.cloud\/resource\/author\/accuwebadmin\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Kubernetes Cluster: Guide to Implementing Ingresses","description":"Learn how to use Kubernetes Ingresses to facilitate external access to your services, with SSL termination and name-based virtual hosting.","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:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress","og_locale":"en_US","og_type":"article","og_title":"Kubernetes Cluster: Guide to Implementing Ingresses","og_description":"Learn how to use Kubernetes Ingresses to facilitate external access to your services, with SSL termination and name-based virtual hosting.","og_url":"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress","og_site_name":"AccuWeb Cloud","article_modified_time":"2026-02-19T07:39:19+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress#article","isPartOf":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress"},"author":{"name":"Jilesh Patadiya","@id":"https:\/\/accuweb.cloud\/resource\/#\/schema\/person\/a7a4cbe8405202b537509c757b588c58"},"headline":"Kubernetes Cluster: Guide to Implementing Ingresses","datePublished":"2024-04-24T05:19:33+00:00","dateModified":"2026-02-19T07:39:19+00:00","mainEntityOfPage":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress"},"wordCount":263,"publisher":{"@id":"https:\/\/accuweb.cloud\/resource\/#organization"},"image":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress#primaryimage"},"thumbnailUrl":"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg","inLanguage":"en-US"},{"@type":["WebPage","FAQPage"],"@id":"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress","url":"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress","name":"Kubernetes Cluster: Guide to Implementing Ingresses","isPartOf":{"@id":"https:\/\/accuweb.cloud\/resource\/#website"},"primaryImageOfPage":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress#primaryimage"},"image":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress#primaryimage"},"thumbnailUrl":"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg","datePublished":"2024-04-24T05:19:33+00:00","dateModified":"2026-02-19T07:39:19+00:00","description":"Learn how to use Kubernetes Ingresses to facilitate external access to your services, with SSL termination and name-based virtual hosting.","breadcrumb":{"@id":"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress#primaryimage","url":"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg","contentUrl":"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/07\/NEW-OG-IMAGE-URL.jpg","width":1280,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/accuweb.cloud\/resource\/articles\/kubernetes-cluster-implementing-ingress#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/accuweb.cloud\/resource\/"},{"@type":"ListItem","position":2,"name":"Kubernetes Cluster: Guide to Implementing Ingresses"}]},{"@type":"WebSite","@id":"https:\/\/accuweb.cloud\/resource\/#website","url":"https:\/\/accuweb.cloud\/resource\/","name":"AccuWeb Cloud","description":"Cutting Edge Cloud Computing","publisher":{"@id":"https:\/\/accuweb.cloud\/resource\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/accuweb.cloud\/resource\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/accuweb.cloud\/resource\/#organization","name":"AccuWeb.Cloud","url":"https:\/\/accuweb.cloud\/resource\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/accuweb.cloud\/resource\/#\/schema\/logo\/image\/","url":"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/04\/accuwebcloud_logo_black_tagline.jpg","contentUrl":"https:\/\/accuweb.cloud\/resource\/wp-content\/uploads\/2024\/04\/accuwebcloud_logo_black_tagline.jpg","width":156,"height":87,"caption":"AccuWeb.Cloud"},"image":{"@id":"https:\/\/accuweb.cloud\/resource\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/accuweb.cloud\/resource\/#\/schema\/person\/a7a4cbe8405202b537509c757b588c58","name":"Jilesh Patadiya","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/accuweb.cloud\/resource\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/2cea2bdb5bbabb771ee67e96acad7396f25cb1a0c360b9bc4a9ac40cea9cd8b2?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2cea2bdb5bbabb771ee67e96acad7396f25cb1a0c360b9bc4a9ac40cea9cd8b2?s=96&d=mm&r=g","caption":"Jilesh Patadiya"},"description":"Jilesh Patadiya, the visionary Co-Founder and Chief Technology Officer (CTO) behind AccuWeb.Cloud. Founder &amp; CTO at AccuWebHosting.com. He shares his web hosting insights on the AccuWeb.Cloud blog. He mostly writes on the latest web hosting trends, WordPress, storage technologies, and Windows and Linux hosting platforms.","sameAs":["https:\/\/accuweb.cloud\/resource","https:\/\/www.facebook.com\/accuwebhosting","https:\/\/www.instagram.com\/accuwebhosting\/","https:\/\/www.linkedin.com\/company\/accuwebhosting\/","https:\/\/x.com\/accuwebhosting","https:\/\/www.youtube.com\/c\/Accuwebhosting"],"url":"https:\/\/accuweb.cloud\/resource\/author\/accuwebadmin"}]}},"_links":{"self":[{"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/faq\/39189","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/faq"}],"about":[{"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/types\/faq"}],"author":[{"embeddable":true,"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/comments?post=39189"}],"version-history":[{"count":3,"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/faq\/39189\/revisions"}],"predecessor-version":[{"id":53357,"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/faq\/39189\/revisions\/53357"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/media\/52879"}],"wp:attachment":[{"href":"https:\/\/accuweb.cloud\/resource\/wp-json\/wp\/v2\/media?parent=39189"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}