{"id":15115,"date":"2025-06-19T18:50:11","date_gmt":"2025-06-19T13:20:11","guid":{"rendered":"https:\/\/www.skynats.com\/?p=15115"},"modified":"2025-06-19T18:50:13","modified_gmt":"2025-06-19T13:20:13","slug":"how-to-install-restyaboard-on-ubuntu","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-install-restyaboard-on-ubuntu\/","title":{"rendered":"How to Install Restyaboard on Ubuntu"},"content":{"rendered":"\n<p>Restyaboard is one such powerful open-source project management tool. It offers Kanban-style boards, task tracking, offline sync, and flexible collaboration\u00a0 all wrapped in a clean, user-friendly interface. Whether you want to self-host to safeguard your data or just want a free alternative with great features, Installing Restyaboard is an excellent choice. <\/p>\n\n\n\n<p>In this step-by-step guide, you\u2019ll learn how to install Restyaboard on Ubuntu using two popular methods: a manual setup with Apache and PostgreSQL, and a quick, hassle-free <a href=\"https:\/\/www.docker.com\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">Docker<\/mark><\/a> deployment. By the end, you\u2019ll have your own project management system up and running, ready to help your team stay productive<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-update-your-server\"><strong>Update Your Server<\/strong><\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>apt update &amp;&amp; sudo apt upgrade -y<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-install-required-packages\"><strong>Install Required Packages<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>apt install apache2 postgresql postgresql-contrib php7.4 php7.4-cli php7.4-pgsql php7.4-curl php7.4-json php7.4-gd php7.4-mbstring php7.4-xml php7.4-zip libapache2-mod-php7.4 git unzip curl -y<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-configure-the-postgresql-database\"><strong>Configure the PostgreSQL Database<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo -u postgres psql<\/code><\/pre>\n\n\n\n<p>In the PostgreSQL shell, run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>CREATE DATABASE restyaboard;\nCREATE USER restya WITH PASSWORD 'restyapassword';\nGRANT ALL PRIVILEGES ON DATABASE restyaboard TO restya;\n\\q<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\" id=\"h-clone-the-restyaboard-repository\"><strong>Clone the Restyaboard Repository<\/strong><\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/var\/www\/\nsudo git clone https:\/\/github.com\/RestyaPlatform\/board restyaboard\ncd restyaboard<\/code><\/pre>\n\n\n\n<p><strong>Set Permissions<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>chown -R www-data:www-data \/var\/www\/restyaboard\nchmod -R 755 \/var\/www\/restyaboard<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Configure Apache<\/strong><\/h3>\n\n\n\n<p>Create a new virtual host file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>vim  \/etc\/apache2\/sites-available\/restyaboard.conf<\/code><\/pre>\n\n\n\n<p>Paste the following config:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>apache\nCopyEdit\n&lt;VirtualHost *:80>\n    ServerAdmin admin@yourdomain.com\n    DocumentRoot \/var\/www\/restyaboard\n    ServerName ip_address\n\n    &lt;Directory \/var\/www\/restyaboard\/>\n        Options Indexes FollowSymLinks\n        AllowOverride All\n        Require all granted\n    &lt;\/Directory>\n\n    ErrorLog ${APACHE_LOG_DIR}\/restya_error.log\n    CustomLog ${APACHE_LOG_DIR}\/restya_access.log combined\n&lt;\/VirtualHost><\/code><\/pre>\n\n\n\n<p>Enable the site:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>a2ensite restyaboard.conf\na2enmod rewrite\nsystemctl restart apache2<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Configure Restyaboard<\/strong><\/h2>\n\n\n\n<p>Open the configuration file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>vim  \/var\/www\/restyaboard\/server\/php\/config.inc.php<\/code><\/pre>\n\n\n\n<p>Update the database settings:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>define('R_DB_TYPE', 'pgsql');\ndefine('R_DB_HOST', 'localhost');\ndefine('R_DB_NAME', 'restyaboard');\ndefine('R_DB_USER', 'restya');\ndefine('R_DB_PASSWORD', 'restyapassword');<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-import-the-sql-schema\"><strong>Import the SQL Schema<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo -u postgres psql restyaboard &lt; \/var\/www\/restyaboard\/sql\/rest.sql<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\" id=\"h-restart-apache\"><strong>Restart Apache<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>systemctl restart apache2<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>Restyaboard provides a robust, self-hosted project management platform that puts you in full control of your data and workflow. Whether you prefer the granular control of a manual installation or the speed and simplicity of Docker, setting up Restyaboard on Ubuntu is straightforward and rewarding.<\/p>\n\n\n\n<p>With your own Restyaboard instance, you can collaborate seamlessly using Kanban boards, track tasks effectively, and ensure your projects move forward smoothly \u2014 all without relying on third-party cloud services.<\/p>\n\n\n\n<p>If you encounter any issues during installation or want to explore additional features and customizations, the Restyaboard community and documentation are great resources. And if you want alternatives, open-source tools like Taiga, OpenProject, or Focalboard may also fit your needs.<\/p>\n\n\n\n<p>Skynats provides expert <a href=\"https:\/\/www.skynats.com\/linux-server-management\/\">Linux Server Management Services<\/a> to help you seamlessly install Restyaboard on Ubuntu and keep your server running smoothly. Get in touch with us today!<br><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Restyaboard is one such powerful open-source project management tool. It offers Kanban-style boards, task tracking, offline sync, and flexible collaboration\u00a0 all wrapped in a clean, user-friendly interface. Whether you want to self-host to safeguard your data or just want a free alternative with great features, Installing Restyaboard is an excellent choice. In this step-by-step guide, [&hellip;]<\/p>\n","protected":false},"author":12,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[1054,1010],"class_list":["post-15115","post","type-post","status-publish","format-standard","hentry","category-blog","tag-install-restyaboard-on-ubuntu","tag-linux-server-management-services"],"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>Install Restyaboard on Ubuntu Server: Free Setup Tips<\/title>\n<meta name=\"description\" content=\"Discover the easiest way to install Restyaboard on Ubuntu server. Our expert guide ensures a successful setup. Get started 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-restyaboard-on-ubuntu\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Restyaboard on Ubuntu\" \/>\n<meta property=\"og:description\" content=\"Discover the easiest way to install Restyaboard on Ubuntu server. Our expert guide ensures a successful setup. Get started now!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-install-restyaboard-on-ubuntu\/\" \/>\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-06-19T13:20:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-19T13:20:13+00:00\" \/>\n<meta name=\"author\" content=\"Sajna VM\" \/>\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=\"Sajna VM\" \/>\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-restyaboard-on-ubuntu\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-restyaboard-on-ubuntu\\\/\"},\"author\":{\"name\":\"Sajna VM\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/670799cac44dade2781ac6c4973426be\"},\"headline\":\"How to Install Restyaboard on Ubuntu\",\"datePublished\":\"2025-06-19T13:20:11+00:00\",\"dateModified\":\"2025-06-19T13:20:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-restyaboard-on-ubuntu\\\/\"},\"wordCount\":302,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"Install Restyaboard on Ubuntu\",\"linux server management services\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-restyaboard-on-ubuntu\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-restyaboard-on-ubuntu\\\/\",\"name\":\"Install Restyaboard on Ubuntu Server: Free Setup Tips\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2025-06-19T13:20:11+00:00\",\"dateModified\":\"2025-06-19T13:20:13+00:00\",\"description\":\"Discover the easiest way to install Restyaboard on Ubuntu server. Our expert guide ensures a successful setup. Get started now!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-restyaboard-on-ubuntu\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-restyaboard-on-ubuntu\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-restyaboard-on-ubuntu\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Restyaboard on Ubuntu\"}]},{\"@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\\\/670799cac44dade2781ac6c4973426be\",\"name\":\"Sajna VM\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g\",\"caption\":\"Sajna VM\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Install Restyaboard on Ubuntu Server: Free Setup Tips","description":"Discover the easiest way to install Restyaboard on Ubuntu server. Our expert guide ensures a successful setup. Get started 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-restyaboard-on-ubuntu\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Restyaboard on Ubuntu","og_description":"Discover the easiest way to install Restyaboard on Ubuntu server. Our expert guide ensures a successful setup. Get started now!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-install-restyaboard-on-ubuntu\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-06-19T13:20:11+00:00","article_modified_time":"2025-06-19T13:20:13+00:00","author":"Sajna VM","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Sajna VM","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-restyaboard-on-ubuntu\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-restyaboard-on-ubuntu\/"},"author":{"name":"Sajna VM","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/670799cac44dade2781ac6c4973426be"},"headline":"How to Install Restyaboard on Ubuntu","datePublished":"2025-06-19T13:20:11+00:00","dateModified":"2025-06-19T13:20:13+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-restyaboard-on-ubuntu\/"},"wordCount":302,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["Install Restyaboard on Ubuntu","linux server management services"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-restyaboard-on-ubuntu\/","url":"https:\/\/www.skynats.com\/blog\/how-to-install-restyaboard-on-ubuntu\/","name":"Install Restyaboard on Ubuntu Server: Free Setup Tips","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2025-06-19T13:20:11+00:00","dateModified":"2025-06-19T13:20:13+00:00","description":"Discover the easiest way to install Restyaboard on Ubuntu server. Our expert guide ensures a successful setup. Get started now!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-restyaboard-on-ubuntu\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-install-restyaboard-on-ubuntu\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-restyaboard-on-ubuntu\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Restyaboard on Ubuntu"}]},{"@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\/670799cac44dade2781ac6c4973426be","name":"Sajna VM","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/be4874edc2bd263b9580e37403a031ea2867817157fdfb16709303982f093c44?s=96&d=mm&r=g","caption":"Sajna VM"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15115","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\/12"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=15115"}],"version-history":[{"count":2,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15115\/revisions"}],"predecessor-version":[{"id":15117,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15115\/revisions\/15117"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=15115"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=15115"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=15115"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}