{"id":15517,"date":"2025-07-28T17:23:43","date_gmt":"2025-07-28T11:53:43","guid":{"rendered":"https:\/\/www.skynats.com\/?p=15517"},"modified":"2025-07-28T17:23:45","modified_gmt":"2025-07-28T11:53:45","slug":"how-to-install-gitea-on-ubuntu-24-04-with-mysql-8","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-install-gitea-on-ubuntu-24-04-with-mysql-8\/","title":{"rendered":"How to Install Gitea on Ubuntu 24.04 with MySQL 8"},"content":{"rendered":"\n<p>Gitea is a lightweight, self-hosted Git service similar to <a href=\"https:\/\/github.com\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">GitHub<\/mark><\/a>, GitLab, or Bitbucket.\u00a0It offers a simple and fast way to manage your code repositories with a user-friendly web interface, issue tracking, code review etc, without the resource overhead. Gitea is ideal for individuals, small teams, or organizations that want full control over their codebase. In this guide, we&#8217;ll learn install Gitea on Ubuntu 24.04 and configure it with MySQL 8.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-prerequisites\">Prerequisites<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ubuntu 24.04 server<\/li>\n\n\n\n<li>A user with root access or a user with sudo access<\/li>\n\n\n\n<li>MySQL 8 installed<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-steps-to-install-gitea-on-ubuntu-24-04\">Steps to Install Gitea on Ubuntu 24.04<\/h2>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-1-update-the-system\">Step 1: Update the System<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>#apt update\n#apt upgrade<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-2-install-required-packages\">Step 2: Install Required Packages<\/h3>\n\n\n\n<p>Install wget, Git and MariaDB\/MySQL client tools:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#apt install git wget mysql-server<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-3-create-gitea-database-and-user-in-mysql-8\">Step 3: Create Gitea Database and User in MySQL 8<\/h3>\n\n\n\n<p>Log into MySQL:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#mysql<\/code><\/pre>\n\n\n\n<p>Inside the MySQL prompt, run the following:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>>CREATE DATABASE giteadb CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;\n\n>CREATE USER 'git_user'@'localhost' IDENTIFIED BY 'StrongPasswordHere';\n\n>GRANT ALL PRIVILEGES ON giteadb.* TO 'git_user'@'localhost';\n\n>FLUSH PRIVILEGES;\n\n>EXIT;<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-4-create-a-dedicated-gitea-user\">Step 4: Create a Dedicated Gitea User<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>#adduser --system --shell \/bin\/bash --gecos 'Git Version Control' --group --disabled-password --home \/home\/gituser gituser<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-5-download-gitea-binary\">Step 5: Download Gitea Binary<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>#wget -O gitea https:\/\/dl.gitea.io\/gitea\/latest\/gitea-1.22.0-linux-amd64\n#chmod +x gitea\n#mv gitea \/usr\/local\/bin\/<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-6-create-required-directories\">Step 6: Create Required Directories<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>#mkdir -p \/var\/lib\/gitea\/{custom,data,log}\n#chown -R git:git \/var\/lib\/gitea\/\n#chmod -R 750 \/var\/lib\/gitea\/\n\n#mkdir \/etc\/gitea\n#chown root:git \/etc\/gitea\n#chmod 770 \/etc\/gitea<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-7-create-a-systemd-service\">Step 7: Create a systemd Service<\/h3>\n\n\n\n<p>Download the file to the &#8220;\/etc\/systemd\/system\/&#8221; directory<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#wget https:\/\/raw.githubusercontent.com\/go-gitea\/gitea\/main\/contrib\/systemd\/gitea.service -P \/etc\/systemd\/system\/ <\/code><\/pre>\n\n\n\n<p>Adjust the contents in the file gitea.service according to your username, file path etc.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-8-enable-and-start-gitea\">Step 8: Enable and start Gitea:<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>#systemctl daemon-reexec\n#systemctl enable --now gitea<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-step-9-finish-setup-via-web-ui\">Step 9: Finish Setup via Web UI<\/h3>\n\n\n\n<p>Now open your browser and go to:<\/p>\n\n\n\n<p>http:\/\/your-server-ip:3000<\/p>\n\n\n\n<p>Use the following configuration:<\/p>\n\n\n\n<p>Database Settings:<\/p>\n\n\n\n<p>Database Type: MySQL<\/p>\n\n\n\n<p>Host: 127.0.0.1:3306<\/p>\n\n\n\n<p>Username: git_user<\/p>\n\n\n\n<p>Password: StrongPasswordHere<\/p>\n\n\n\n<p>Database Name: giteadb<\/p>\n\n\n\n<p>Application Settings:<\/p>\n\n\n\n<p>Repository Root Path: \/var\/lib\/gitea\/data<\/p>\n\n\n\n<p>Application URL: http:\/\/your-server-ip:3000\/<\/p>\n\n\n\n<p>Click Install Gitea to complete the setup.<\/p>\n\n\n\n<h4 class=\"wp-block-heading has-small-font-size\">Conclusion<\/h4>\n\n\n\n<p>You\u2019ve now learned to install Gitea on Ubuntu 24.04 and configured it with MySQL 8 using a dedicated database and user. You\u2019re ready to start self-hosting your own Git repositories!<\/p>\n\n\n\n<p>If you encounter any challenges while setting up Gitea on Ubuntu 24.04 with MySQL 8, or simply prefer expert assistance to ensure a secure and optimized configuration, our team is here to help. We specialize in professional <a href=\"https:\/\/www.skynats.com\/server-management\/\">server management services<\/a> tailored to your infrastructure needs.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Gitea is a lightweight, self-hosted Git service similar to GitHub, GitLab, or Bitbucket.\u00a0It offers a simple and fast way to manage your code repositories with a user-friendly web interface, issue tracking, code review etc, without the resource overhead. Gitea is ideal for individuals, small teams, or organizations that want full control over their codebase. In [&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":[1075,1076,302],"class_list":["post-15517","post","type-post","status-publish","format-standard","hentry","category-blog","tag-install-gitea-on-ubuntu-24-04","tag-mysql-8","tag-server-management-services"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Install Gitea on Ubuntu 24.04 with MySQL 8\u2014Easy Guide<\/title>\n<meta name=\"description\" content=\"Learn how to Install Gitea on Ubuntu 24.04 with MySQL 8 in minutes! Follow our step-by-step guide\u2014start your setup now!\" \/>\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-gitea-on-ubuntu-24-04-with-mysql-8\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Gitea on Ubuntu 24.04 with MySQL 8\" \/>\n<meta property=\"og:description\" content=\"Learn how to Install Gitea on Ubuntu 24.04 with MySQL 8 in minutes! Follow our step-by-step guide\u2014start your setup now!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-install-gitea-on-ubuntu-24-04-with-mysql-8\/\" \/>\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-07-28T11:53:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-28T11:53:45+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-install-gitea-on-ubuntu-24-04-with-mysql-8\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-gitea-on-ubuntu-24-04-with-mysql-8\\\/\"},\"author\":{\"name\":\"Sourav AJ\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/255d12fc66a62db365022ecbb5846276\"},\"headline\":\"How to Install Gitea on Ubuntu 24.04 with MySQL 8\",\"datePublished\":\"2025-07-28T11:53:43+00:00\",\"dateModified\":\"2025-07-28T11:53:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-gitea-on-ubuntu-24-04-with-mysql-8\\\/\"},\"wordCount\":309,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"Install Gitea on Ubuntu 24.04\",\"MySQL 8\",\"server management services\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-gitea-on-ubuntu-24-04-with-mysql-8\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-gitea-on-ubuntu-24-04-with-mysql-8\\\/\",\"name\":\"Install Gitea on Ubuntu 24.04 with MySQL 8\u2014Easy Guide\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-07-28T11:53:43+00:00\",\"dateModified\":\"2025-07-28T11:53:45+00:00\",\"description\":\"Learn how to Install Gitea on Ubuntu 24.04 with MySQL 8 in minutes! Follow our step-by-step guide\u2014start your setup now!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-gitea-on-ubuntu-24-04-with-mysql-8\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-gitea-on-ubuntu-24-04-with-mysql-8\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-gitea-on-ubuntu-24-04-with-mysql-8\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Gitea on Ubuntu 24.04 with MySQL 8\"}]},{\"@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":"Install Gitea on Ubuntu 24.04 with MySQL 8\u2014Easy Guide","description":"Learn how to Install Gitea on Ubuntu 24.04 with MySQL 8 in minutes! Follow our step-by-step guide\u2014start your setup now!","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-gitea-on-ubuntu-24-04-with-mysql-8\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Gitea on Ubuntu 24.04 with MySQL 8","og_description":"Learn how to Install Gitea on Ubuntu 24.04 with MySQL 8 in minutes! Follow our step-by-step guide\u2014start your setup now!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-install-gitea-on-ubuntu-24-04-with-mysql-8\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-07-28T11:53:43+00:00","article_modified_time":"2025-07-28T11:53:45+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-install-gitea-on-ubuntu-24-04-with-mysql-8\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-gitea-on-ubuntu-24-04-with-mysql-8\/"},"author":{"name":"Sourav AJ","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/255d12fc66a62db365022ecbb5846276"},"headline":"How to Install Gitea on Ubuntu 24.04 with MySQL 8","datePublished":"2025-07-28T11:53:43+00:00","dateModified":"2025-07-28T11:53:45+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-gitea-on-ubuntu-24-04-with-mysql-8\/"},"wordCount":309,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["Install Gitea on Ubuntu 24.04","MySQL 8","server management services"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-gitea-on-ubuntu-24-04-with-mysql-8\/","url":"https:\/\/www.skynats.com\/blog\/how-to-install-gitea-on-ubuntu-24-04-with-mysql-8\/","name":"Install Gitea on Ubuntu 24.04 with MySQL 8\u2014Easy Guide","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-07-28T11:53:43+00:00","dateModified":"2025-07-28T11:53:45+00:00","description":"Learn how to Install Gitea on Ubuntu 24.04 with MySQL 8 in minutes! Follow our step-by-step guide\u2014start your setup now!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-gitea-on-ubuntu-24-04-with-mysql-8\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-install-gitea-on-ubuntu-24-04-with-mysql-8\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-gitea-on-ubuntu-24-04-with-mysql-8\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Gitea on Ubuntu 24.04 with MySQL 8"}]},{"@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\/15517","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=15517"}],"version-history":[{"count":2,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15517\/revisions"}],"predecessor-version":[{"id":15519,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15517\/revisions\/15519"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=15517"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=15517"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=15517"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}