{"id":16652,"date":"2025-11-11T18:15:21","date_gmt":"2025-11-11T12:45:21","guid":{"rendered":"https:\/\/www.skynats.com\/?p=16652"},"modified":"2025-11-11T18:19:01","modified_gmt":"2025-11-11T12:49:01","slug":"how-to-install-phusion-passenger-with-apache-http-server-on-enterprise-linux-8-el8","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-install-phusion-passenger-with-apache-http-server-on-enterprise-linux-8-el8\/","title":{"rendered":"How to install Phusion Passenger with Apache HTTP Server on Enterprise Linux 8 (EL8)"},"content":{"rendered":"\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-introduction\">Introduction<\/h2>\n\n\n\n<p>When deploying modern web applications such as Ruby on Rails, Python, or Node.js, managing app processes efficiently is crucial. Phusion Passenger is a robust application server that integrates seamlessly with <a href=\"https:\/\/httpd.apache.org\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">Apache HTTP Server<\/mark><\/a>, handling app processes automatically while improving performance and reliability.<\/p>\n\n\n\n<p>In this guide, we\u2019ll walk through the steps to install Phusion Passenger with Apache on Enterprise Linux 8 (RHEL 8, CentOS 8, or Rocky Linux 8) using the official RPM packages provided by Phusion.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-prerequisites\">Prerequisites<\/h2>\n\n\n\n<p>Before beginning the installation, ensure your system meets the following requirements:<\/p>\n\n\n\n<p><strong>1. Root or Sudo Privileges<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\"><\/ol>\n\n\n\n<ol class=\"wp-block-list\"><\/ol>\n\n\n\n<ol class=\"wp-block-list\"><\/ol>\n\n\n\n<p>You need superuser access to install packages and configure repositories.<\/p>\n\n\n\n<p>2. <strong>Installed Apache Web Server<\/strong><\/p>\n\n\n\n<ol start=\"2\" class=\"wp-block-list\"><\/ol>\n\n\n\n<p>Apache (httpd) must be installed. If not, install it using:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo dnf install httpd<\/code><\/pre>\n\n\n\n<p>3. <strong>EPEL Repository<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\"><\/ol>\n\n\n\n<p>Passenger depends on some packages from the Extra Packages for Enterprise Linux (EPEL) repository, which we\u2019ll enable below.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\">Step-by-Step Installation<\/h2>\n\n\n\n<p>Here\u2019s a summary of how to get Passenger up and running with Apache on EL8:<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>1. Enable EPEL<\/strong><\/h3>\n\n\n\n<p>First you need the Extra Packages for Enterprise Linux (EPEL) repository, because Passenger requires some dependencies from there. The commands are:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#sudo dnf install dnf-utils  \n#sudo dnf install https:\/\/dl.fedoraproject.org\/pub\/epel\/epel-release-latest-$(&lt; \/etc\/redhat-release tr -dc '0-9.'|cut -d \\. -f1).noarch.rpm  \n\n#sudo dnf config-manager --enable epel  \n#sudo dnf clean all <\/code><\/pre>\n\n\n\n<p>If you\u2019re on RHEL, you may also need to enable the \u201coptional\u201d repository (rhel-8-server-optional-rpms) via subscription manager so that all dependencies can be satisfied.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-2-fix-any-system-issues\"><strong>2. Fix any system issues<\/strong><\/h3>\n\n\n\n<p>Before installing, it\u2019s wise to ensure the system is in good shape so dnf can install everything smoothly. For example:<\/p>\n\n\n\n<p>Run:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#sudo dnf update <\/code><\/pre>\n\n\n\n<p>This will bring packages up to date.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-3-add-the-passenger-rpm-repository-amp-install\"><strong>3. Add the Passenger RPM repository &amp; install<\/strong><\/h3>\n\n\n\n<p>Now you add the Phusion repository and install Passenger with Apache module:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#sudo curl --fail -sSLo \/etc\/yum.repos.d\/passenger.repo \\\n   https:&#47;&#47;oss-binaries.phusionpassenger.com\/yum\/definitions\/el-passenger.repo  \n\n#sudo dnf install mod_passenger || { sudo dnf config-manager --enable cr &amp;&amp; sudo dnf install -y mod_passenger; } <\/code><\/pre>\n\n\n\n<p>This installs Passenger + the Apache module (mod_passenger) so Apache can serve Passenger-managed apps.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>4. Restart Apache<\/strong><\/h3>\n\n\n\n<p>Once installed, restart Apache to load the Passenger module and ensure it\u2019s active<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#sudo systemctl restart httpd<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>5. Validate the installation<\/strong><\/h3>\n\n\n\n<p>Confirm that everything is working by running:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo \/usr\/bin\/passenger-config validate-install<\/code><\/pre>\n\n\n\n<p>You should see checks pass (Passenger in PATH, no conflicting installations)<\/p>\n\n\n\n<p>And to inspect processes:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo \/usr\/sbin\/passenger-memory-stats<\/code><\/pre>\n\n\n\n<p>You should see Apache and Passenger processes listed. If not, refer to the troubleshooting guide.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>6. Keep things updated<\/strong><\/h3>\n\n\n\n<p>Since Passenger and Apache both receive updates, it\u2019s important to keep Passenger and Apache up-to-date with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo dnf update \nsystemctl restart httpd<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading has-small-font-size\">Conclusion<\/h4>\n\n\n\n<p>Installing Phusion Passenger on an Enterprise Linux 8 system alongside Apache provides a powerful, production-ready environment for hosting web applications. It simplifies deployment by automatically managing application processes while optimizing performance and resource usage.<\/p>\n\n\n\n<p>By following these steps \u2014 from enabling repositories to validating your setup \u2014 you can ensure a stable and secure Passenger installation that\u2019s ready to serve Ruby, Python, or Node.js applications in a professional environment. Remember to keep your system updated and restart Apache after upgrades to maintain smooth and reliable performance.<\/p>\n\n\n\n<p>If you encounter challenges while installing or configuring Phusion Passenger on Apache HTTP Server for Enterprise Linux 8, our expert team is here to help. With years of experience in <a href=\"https:\/\/www.skynats.com\/linux-server-management\/\">Linux Server Management Services<\/a>, we provide end-to-end support \u2014 from setup and optimization to performance tuning and troubleshooting.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction When deploying modern web applications such as Ruby on Rails, Python, or Node.js, managing app processes efficiently is crucial. Phusion Passenger is a robust application server that integrates seamlessly with Apache HTTP Server, handling app processes automatically while improving performance and reliability. In this guide, we\u2019ll walk through the steps to install Phusion Passenger [&hellip;]<\/p>\n","protected":false},"author":13,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[1165,1010,1164],"class_list":["post-16652","post","type-post","status-publish","format-standard","hentry","category-blog","tag-apache-http-server-on-enterprise-linux-8","tag-linux-server-management-services","tag-phusion-passenger"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.6) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Phusion Passenger Setup on EL8: Easy Apache Install Guide<\/title>\n<meta name=\"description\" content=\"Install Phusion Passenger on EL8 with ease! Follow our step-by-step guide to boost Apache performance today.\" \/>\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.skynats.com\/blog\/how-to-install-phusion-passenger-with-apache-http-server-on-enterprise-linux-8-el8\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install Phusion Passenger with Apache HTTP Server on Enterprise Linux 8 (EL8)\" \/>\n<meta property=\"og:description\" content=\"Install Phusion Passenger on EL8 with ease! Follow our step-by-step guide to boost Apache performance today.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-install-phusion-passenger-with-apache-http-server-on-enterprise-linux-8-el8\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-11T12:45:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-11-11T12:49:01+00:00\" \/>\n<meta name=\"author\" content=\"Sourav AJ\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sourav AJ\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-phusion-passenger-with-apache-http-server-on-enterprise-linux-8-el8\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-phusion-passenger-with-apache-http-server-on-enterprise-linux-8-el8\\\/\"},\"author\":{\"name\":\"Sourav AJ\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/255d12fc66a62db365022ecbb5846276\"},\"headline\":\"How to install Phusion Passenger with Apache HTTP Server on Enterprise Linux 8 (EL8)\",\"datePublished\":\"2025-11-11T12:45:21+00:00\",\"dateModified\":\"2025-11-11T12:49:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-phusion-passenger-with-apache-http-server-on-enterprise-linux-8-el8\\\/\"},\"wordCount\":493,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"Apache HTTP Server on Enterprise Linux 8\",\"linux server management services\",\"Phusion Passenger\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-phusion-passenger-with-apache-http-server-on-enterprise-linux-8-el8\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-phusion-passenger-with-apache-http-server-on-enterprise-linux-8-el8\\\/\",\"name\":\"Phusion Passenger Setup on EL8: Easy Apache Install Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-11-11T12:45:21+00:00\",\"dateModified\":\"2025-11-11T12:49:01+00:00\",\"description\":\"Install Phusion Passenger on EL8 with ease! Follow our step-by-step guide to boost Apache performance today.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-phusion-passenger-with-apache-http-server-on-enterprise-linux-8-el8\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-phusion-passenger-with-apache-http-server-on-enterprise-linux-8-el8\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-phusion-passenger-with-apache-http-server-on-enterprise-linux-8-el8\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install Phusion Passenger with Apache HTTP Server on Enterprise Linux 8 (EL8)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/255d12fc66a62db365022ecbb5846276\",\"name\":\"Sourav AJ\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"caption\":\"Sourav AJ\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Phusion Passenger Setup on EL8: Easy Apache Install Guide","description":"Install Phusion Passenger on EL8 with ease! Follow our step-by-step guide to boost Apache performance today.","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.skynats.com\/blog\/how-to-install-phusion-passenger-with-apache-http-server-on-enterprise-linux-8-el8\/","og_locale":"en_US","og_type":"article","og_title":"How to install Phusion Passenger with Apache HTTP Server on Enterprise Linux 8 (EL8)","og_description":"Install Phusion Passenger on EL8 with ease! Follow our step-by-step guide to boost Apache performance today.","og_url":"https:\/\/www.skynats.com\/blog\/how-to-install-phusion-passenger-with-apache-http-server-on-enterprise-linux-8-el8\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-11-11T12:45:21+00:00","article_modified_time":"2025-11-11T12:49:01+00:00","author":"Sourav AJ","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Sourav AJ","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-phusion-passenger-with-apache-http-server-on-enterprise-linux-8-el8\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-phusion-passenger-with-apache-http-server-on-enterprise-linux-8-el8\/"},"author":{"name":"Sourav AJ","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/255d12fc66a62db365022ecbb5846276"},"headline":"How to install Phusion Passenger with Apache HTTP Server on Enterprise Linux 8 (EL8)","datePublished":"2025-11-11T12:45:21+00:00","dateModified":"2025-11-11T12:49:01+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-phusion-passenger-with-apache-http-server-on-enterprise-linux-8-el8\/"},"wordCount":493,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["Apache HTTP Server on Enterprise Linux 8","linux server management services","Phusion Passenger"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-phusion-passenger-with-apache-http-server-on-enterprise-linux-8-el8\/","url":"https:\/\/www.skynats.com\/blog\/how-to-install-phusion-passenger-with-apache-http-server-on-enterprise-linux-8-el8\/","name":"Phusion Passenger Setup on EL8: Easy Apache Install Guide","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-11-11T12:45:21+00:00","dateModified":"2025-11-11T12:49:01+00:00","description":"Install Phusion Passenger on EL8 with ease! Follow our step-by-step guide to boost Apache performance today.","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-phusion-passenger-with-apache-http-server-on-enterprise-linux-8-el8\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-install-phusion-passenger-with-apache-http-server-on-enterprise-linux-8-el8\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-phusion-passenger-with-apache-http-server-on-enterprise-linux-8-el8\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to install Phusion Passenger with Apache HTTP Server on Enterprise Linux 8 (EL8)"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/255d12fc66a62db365022ecbb5846276","name":"Sourav AJ","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","caption":"Sourav AJ"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/16652","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=16652"}],"version-history":[{"count":4,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/16652\/revisions"}],"predecessor-version":[{"id":16798,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/16652\/revisions\/16798"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=16652"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=16652"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=16652"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}