{"id":15668,"date":"2025-08-29T19:02:16","date_gmt":"2025-08-29T13:32:16","guid":{"rendered":"https:\/\/www.skynats.com\/?p=15668"},"modified":"2025-09-01T16:41:06","modified_gmt":"2025-09-01T11:11:06","slug":"how-to-deploy-ruby-on-rails-with-passenger-on-ubuntu-24","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-deploy-ruby-on-rails-with-passenger-on-ubuntu-24\/","title":{"rendered":"How to Deploy Ruby on Rails with Passenger on Ubuntu 24"},"content":{"rendered":"\n<p>Ruby on Rails is one of the most popular frameworks for building modern web applications. When paired with Passenger and Nginx, you get a production-ready deployment stack that is simple, secure, and high-performance.<\/p>\n\n\n\n<p>In this guide, we\u2019ll walk through the process of setting up a fresh Ruby on Rails application to deploy Ruby on Rails and running it with Passenger on <a href=\"https:\/\/ubuntu.com\/blog\/tag\/ubuntu-24-04-lts\">Ubuntu 24<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-steps-to-deploy-rails-with-passenger\"><strong>Steps to Deploy Rails with Passenger<\/strong><\/h2>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-1-update-and-install-dependencies\"><strong>1. Update and Install Dependencies<\/strong><\/h2>\n\n\n\n<p>Make sure your system is up to date and install essential packages:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#apt update\n#apt upgrade \n#sudo apt install git curl libssl-dev libreadline-dev zlib1g-dev autoconf bison build-essential libyaml-dev libreadline-dev libncurses5-dev libffi-dev libgdbm-dev \n#apt install ruby gem ruby-dev<\/code><\/pre>\n\n\n\n<p>Install Nginx:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#apt-get install nginx<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-2-install-passenger\"><strong>2. Install Passenger<\/strong><\/h3>\n\n\n\n<p>Add the Phusion Passenger repository and install Passenger:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#apt-get install dirmngr gnupg apt-transport-https ca-certificates curl\n\n#curl https:\/\/oss-binaries.phusionpassenger.com\/auto-software-signing-gpg-key.txt | gpg --dearmor | sudo tee \/etc\/apt\/trusted.gpg.d\/phusion.gpg &gt;\/dev\/null\n\n#sh -c 'echo deb https:\/\/oss-binaries.phusionpassenger.com\/apt\/passenger noble main &gt; \/etc\/apt\/sources.list.d\/passenger.list'\n\n#apt-get update\n#apt-get install libnginx-mod-http-passenger<\/code><\/pre>\n\n\n\n<p>Validate Passenger installation:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#\/usr\/bin\/passenger-config validate-install<\/code><\/pre>\n\n\n\n<p>And select apache from the shown list<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>3. Create a Rails Application<\/strong><\/h3>\n\n\n\n<p>Set up your working directory and install Rails:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#mkdir -p \/var\/www\n#cd \/var\/www\n#apt install ruby-bundler libsqlite3-dev\n#rails new app_name\n#cd app_name<\/code><\/pre>\n\n\n\n<p>For security, you should avoid running your Rails application as the root user. Instead, create a dedicated system user that owns your Rails application files and runs Passenger.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Create a new user: \n#adduser deploy\n\nSet ownership of your Rails app directory:\n#chown -R deploy:deploy \/var\/www\/app_name<\/code><\/pre>\n\n\n\n<p>Switch to the new user before running Rails commands:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#su deploy -\n$cd \/var\/www\/app_name\n\nInstall the gems:\n$bundle install<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>4. Configure the Database<\/strong><\/h3>\n\n\n\n<p>Create and migrate the database:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$rake db:create\n$rake db:setup\n$rake db:migrate<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>5. Configure Nginx for Rails<\/strong><\/h3>\n\n\n\n<p>Create a new Nginx server block for your Rails app:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#vim \/etc\/nginx\/sites-enabled\/rails.conf<\/code><\/pre>\n\n\n\n<p>Add the following configuration:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>passenger_log_level 5;\n\nserver {\n    listen 80;\n    server_name www.example.com;\n    root \/var\/www\/app_name\/public;\n    index index.htm index.html;\n    passenger_enabled on;\n}<\/code><\/pre>\n\n\n\n<p>Restart Nginx:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#systemctl restart nginx<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>6. Add a Root Route<\/strong><\/h3>\n\n\n\n<p>Set a root route in your Rails app:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#vim \/var\/www\/app_name\/config\/routes.rb<\/code><\/pre>\n\n\n\n<p>Add:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>root \"home#index\"<\/code><\/pre>\n\n\n\n<p>Generate a controller and view:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#rails generate controller Home index<\/code><\/pre>\n\n\n\n<p>Restart passenger:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#touch tmp\/restart.txt<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-conclusion\"><strong>Conclusion<\/strong><\/h3>\n\n\n\n<p>You\u2019ve now successfully deployed a Ruby on Rails application with Passenger and Nginx on Ubuntu 24. With Passenger managing your application processes, you get a streamlined and reliable production setup. From here, you can continue building your Rails application, configure your domain, and set up SSL for a fully secure deployment.<\/p>\n\n\n\n<p>If you\u2019re planning to deploy Ruby on Rails with Passenger on Ubuntu 24, expert guidance can make the process smoother and more reliable. At Skynats, we specialize in application deployment, DevOps practices, and comprehensive <a href=\"https:\/\/www.skynats.com\/blog\/\">server management services<\/a> to ensure your Rails apps run securely and efficiently.<\/p>\n\n\n\n<p>Need assistance with deployment or server optimization? Contact Skynats today for expert support!<br><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Ruby on Rails is one of the most popular frameworks for building modern web applications. When paired with Passenger and Nginx, you get a production-ready deployment stack that is simple, secure, and high-performance. In this guide, we\u2019ll walk through the process of setting up a fresh Ruby on Rails application to deploy Ruby on Rails [&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":[1093,302,993],"class_list":["post-15668","post","type-post","status-publish","format-standard","hentry","category-blog","tag-ruby-on-rails","tag-server-management-services","tag-ubuntu-24"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>&quot;Deploy Ruby on Rails on Ubuntu 24 with Passenger Guide&quot;<\/title>\n<meta name=\"description\" content=\"Learn how to deploy Ruby on Rails with Passenger on Ubuntu 24. Follow our easy guide &amp; launch your app faster 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-deploy-ruby-on-rails-with-passenger-on-ubuntu-24\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Deploy Ruby on Rails with Passenger on Ubuntu 24\" \/>\n<meta property=\"og:description\" content=\"Learn how to deploy Ruby on Rails with Passenger on Ubuntu 24. Follow our easy guide &amp; launch your app faster today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-deploy-ruby-on-rails-with-passenger-on-ubuntu-24\/\" \/>\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-08-29T13:32:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-01T11:11:06+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=\"2 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-deploy-ruby-on-rails-with-passenger-on-ubuntu-24\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-deploy-ruby-on-rails-with-passenger-on-ubuntu-24\\\/\"},\"author\":{\"name\":\"Sourav AJ\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/255d12fc66a62db365022ecbb5846276\"},\"headline\":\"How to Deploy Ruby on Rails with Passenger on Ubuntu 24\",\"datePublished\":\"2025-08-29T13:32:16+00:00\",\"dateModified\":\"2025-09-01T11:11:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-deploy-ruby-on-rails-with-passenger-on-ubuntu-24\\\/\"},\"wordCount\":325,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"ruby on rails\",\"server management services\",\"Ubuntu 24\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-deploy-ruby-on-rails-with-passenger-on-ubuntu-24\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-deploy-ruby-on-rails-with-passenger-on-ubuntu-24\\\/\",\"name\":\"\\\"Deploy Ruby on Rails on Ubuntu 24 with Passenger Guide\\\"\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-08-29T13:32:16+00:00\",\"dateModified\":\"2025-09-01T11:11:06+00:00\",\"description\":\"Learn how to deploy Ruby on Rails with Passenger on Ubuntu 24. Follow our easy guide & launch your app faster today!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-deploy-ruby-on-rails-with-passenger-on-ubuntu-24\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-deploy-ruby-on-rails-with-passenger-on-ubuntu-24\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-deploy-ruby-on-rails-with-passenger-on-ubuntu-24\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Deploy Ruby on Rails with Passenger on Ubuntu 24\"}]},{\"@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":"\"Deploy Ruby on Rails on Ubuntu 24 with Passenger Guide\"","description":"Learn how to deploy Ruby on Rails with Passenger on Ubuntu 24. Follow our easy guide & launch your app faster 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-deploy-ruby-on-rails-with-passenger-on-ubuntu-24\/","og_locale":"en_US","og_type":"article","og_title":"How to Deploy Ruby on Rails with Passenger on Ubuntu 24","og_description":"Learn how to deploy Ruby on Rails with Passenger on Ubuntu 24. Follow our easy guide & launch your app faster today!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-deploy-ruby-on-rails-with-passenger-on-ubuntu-24\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-08-29T13:32:16+00:00","article_modified_time":"2025-09-01T11:11:06+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":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-deploy-ruby-on-rails-with-passenger-on-ubuntu-24\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-deploy-ruby-on-rails-with-passenger-on-ubuntu-24\/"},"author":{"name":"Sourav AJ","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/255d12fc66a62db365022ecbb5846276"},"headline":"How to Deploy Ruby on Rails with Passenger on Ubuntu 24","datePublished":"2025-08-29T13:32:16+00:00","dateModified":"2025-09-01T11:11:06+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-deploy-ruby-on-rails-with-passenger-on-ubuntu-24\/"},"wordCount":325,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["ruby on rails","server management services","Ubuntu 24"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-deploy-ruby-on-rails-with-passenger-on-ubuntu-24\/","url":"https:\/\/www.skynats.com\/blog\/how-to-deploy-ruby-on-rails-with-passenger-on-ubuntu-24\/","name":"\"Deploy Ruby on Rails on Ubuntu 24 with Passenger Guide\"","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-08-29T13:32:16+00:00","dateModified":"2025-09-01T11:11:06+00:00","description":"Learn how to deploy Ruby on Rails with Passenger on Ubuntu 24. Follow our easy guide & launch your app faster today!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-deploy-ruby-on-rails-with-passenger-on-ubuntu-24\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-deploy-ruby-on-rails-with-passenger-on-ubuntu-24\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-deploy-ruby-on-rails-with-passenger-on-ubuntu-24\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Deploy Ruby on Rails with Passenger on Ubuntu 24"}]},{"@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\/15668","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=15668"}],"version-history":[{"count":2,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15668\/revisions"}],"predecessor-version":[{"id":15686,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15668\/revisions\/15686"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=15668"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=15668"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=15668"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}