{"id":1127,"date":"2026-09-02T23:19:39","date_gmt":"2026-09-02T17:49:39","guid":{"rendered":"https:\/\/cpanelfree.com\/blog\/?p=1127"},"modified":"2026-09-03T12:34:54","modified_gmt":"2026-09-03T07:04:54","slug":"how-to-install-cyberpanel-ubuntu-24-04-lts","status":"publish","type":"post","link":"https:\/\/cpanelfree.com\/blog\/how-to-install-cyberpanel-ubuntu-24-04-lts\/","title":{"rendered":"How to Install CyberPanel on Ubuntu 24.04 LTS: Step-by-Step Guide (2026)"},"content":{"rendered":"<div style=\"background-color: #f0f7ff;border-left: 4px solid #0066cc;padding: 16px 20px;margin-bottom: 25px;border-radius: 6px\">\n<p style=\"margin: 0 0 8px 0;font-weight: bold;color: #004499;font-size: 1.1em\">\u26a1 Quick Tutorial Summary (TL;DR)<\/p>\n<ul style=\"margin: 0;padding-left: 20px;color: #333\">\n<li><strong>Goal:<\/strong> Install CyberPanel with native OpenLiteSpeed and LSCache on Ubuntu 24.04 LTS.<\/li>\n<li><strong>Time Required:<\/strong> ~10 to 15 minutes.<\/li>\n<li><strong>Difficulty:<\/strong> Beginner to Intermediate.<\/li>\n<li><strong>Primary Command:<\/strong> <code>sh &lt;(curl https:\/\/cyberpanel.net\/install.sh || wget -O - https:\/\/cyberpanel.net\/install.sh)<\/code><\/li>\n<li><strong>Access Dashboard:<\/strong> <code>https:\/\/your-server-ip:8090<\/code><\/li>\n<\/ul>\n<\/div>\n<p><strong>CyberPanel<\/strong> is an open-source, high-performance web hosting control panel powered by <strong>OpenLiteSpeed<\/strong>. Built for speed and simplicity, it provides automated Let&#8217;s Encrypt SSL certificates, built-in LiteSpeed Cache (LSCache) management, one-click WordPress staging, email hosting, DNS, and Docker container support\u2014making it one of the top free alternatives to cPanel in 2026.<\/p>\n<p>In this comprehensive, step-by-step tutorial, you will learn how to prepare a clean <strong>Ubuntu 24.04 LTS (Noble Numbat)<\/strong> server, run the automated CyberPanel installer, configure firewall security, and deploy your first lightning-fast WordPress website.<\/p>\n<hr style=\"margin: 30px 0;border: none;border-top: 1px solid #e2e8f0\" \/>\n<h2>Direct Answer: How Do You Install CyberPanel on Ubuntu 24.04 LTS?<\/h2>\n<p><strong>Direct Answer:<\/strong> To install CyberPanel on a clean Ubuntu 24.04 LTS server, update your system packages with <code>apt update &amp;&amp; apt upgrade -y<\/code>, switch to the root user via <code>sudo su -<\/code>, and execute the official installer script: <code>sh &lt;(curl https:\/\/cyberpanel.net\/install.sh || wget -O - https:\/\/cyberpanel.net\/install.sh)<\/code>. Select OpenLiteSpeed, enable full services, and access your dashboard at <code>https:\/\/your-server-ip:8090<\/code>.<\/p>\n<hr style=\"margin: 30px 0;border: none;border-top: 1px solid #e2e8f0\" \/>\n<div style=\"background-color: #f8fafc;border-left: 4px solid #0284c7;padding: 12px 16px;margin: 18px 0;border-radius: 4px\">\n    \ud83d\udcd6 <strong>Explore More Options:<\/strong> Compare CyberPanel with CloudPanel, aaPanel, and HestiaCP in our roundup of the <a href=\"https:\/\/cpanelfree.com\/blog\/best-free-cpanel-alternatives-2026\/\" style=\"color: #0284c7;font-weight: bold;text-decoration: underline\">Top 7 Best Free cPanel Alternatives in 2026<\/a>.\n<\/div>\n<h2>System Requirements &amp; Prerequisites<\/h2>\n<div style=\"background-color: #f8fafc;border: 1px solid #e2e8f0;padding: 18px 22px;margin-bottom: 25px;border-radius: 6px\">\n<h3 style=\"margin-top: 0;color: #1e293b;font-size: 1.15em\">\ud83d\udccb Server Prerequisites Checklist<\/h3>\n<ul style=\"margin-bottom: 0;padding-left: 20px;color: #334155;line-height: 1.7\">\n<li><strong>Operating System:<\/strong> Clean, freshly installed <strong>Ubuntu 24.04 LTS<\/strong> or <strong>Ubuntu 22.04 LTS<\/strong> (64-bit).<\/li>\n<li><strong>RAM:<\/strong> 1 GB minimum (2 GB to 4 GB+ recommended for production with Redis &amp; Postfix).<\/li>\n<li><strong>CPU:<\/strong> 1 Core (2.0 GHz+) minimum.<\/li>\n<li><strong>Disk Space:<\/strong> 10 GB SSD \/ NVMe minimum (20 GB+ recommended).<\/li>\n<li><strong>Access Privileges:<\/strong> Full <strong>root access<\/strong> (or sudo with <code>sudo su -<\/code>).<\/li>\n<li><strong>Network &amp; DNS:<\/strong> A fully qualified domain name (FQDN) with an <strong>A Record<\/strong> pointing to your VPS IP address (e.g., <code>panel.yourdomain.com<\/code>).<\/li>\n<\/ul>\n<\/div>\n<div style=\"background-color: #fff9e6;border-left: 4px solid #ffaa00;padding: 12px 18px;margin: 20px 0;border-radius: 4px\">\n    <strong>\u26a0\ufe0f Important:<\/strong> CyberPanel requires a completely clean server installation. Do <strong>NOT<\/strong> install Apache, Nginx, or MySQL manually before running the script, as pre-existing web servers will cause port binding conflicts.\n<\/div>\n<hr style=\"margin: 30px 0;border: none;border-top: 1px solid #e2e8f0\" \/>\n<h2>Step 1: Update Your Ubuntu 24.04 LTS Server<\/h2>\n<p>Before launching any software installation, ensure your server package lists and existing software packages are completely up to date.<\/p>\n<p>1. Connect to your VPS server via SSH as the root user:<\/p>\n<pre style=\"background-color: #1e293b;color: #f8fafc;padding: 14px 18px;border-radius: 6px\"><code>ssh root@your-server-ip<\/code><\/pre>\n<p>2. If you are logged in as a non-root sudo user, elevate to root:<\/p>\n<pre style=\"background-color: #1e293b;color: #f8fafc;padding: 14px 18px;border-radius: 6px\"><code>sudo su -<\/code><\/pre>\n<p>3. Update your package repositories and upgrade existing system packages:<\/p>\n<pre style=\"background-color: #1e293b;color: #f8fafc;padding: 14px 18px;border-radius: 6px\"><code>apt update &amp;&amp; apt upgrade -y<\/code><\/pre>\n<p>4. Optional: If a kernel update was applied during the upgrade, reboot your server and reconnect:<\/p>\n<pre style=\"background-color: #1e293b;color: #f8fafc;padding: 14px 18px;border-radius: 6px\"><code>reboot<\/code><\/pre>\n<hr style=\"margin: 30px 0;border: none;border-top: 1px solid #e2e8f0\" \/>\n<h2>Step 2: Configure Required Firewall Ports<\/h2>\n<p>CyberPanel operates on port <strong>8090<\/strong> for its web management console, along with standard web, email, and FTP ports. If you are using cloud security groups (AWS EC2, Google Cloud, DigitalOcean, Hetzner, or Vultr) or UFW, ensure the following inbound ports are open:<\/p>\n<table style=\"width: 100%;border-collapse: collapse;margin-top: 15px;margin-bottom: 25px;text-align: left\">\n<thead>\n<tr style=\"background-color: #f1f5f9;border-bottom: 2px solid #cbd5e1\">\n<th style=\"padding: 10px;border: 1px solid #cbd5e1\">Port Number<\/th>\n<th style=\"padding: 10px;border: 1px solid #cbd5e1\">Protocol<\/th>\n<th style=\"padding: 10px;border: 1px solid #cbd5e1\">Service \/ Purpose<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td style=\"padding: 10px;border: 1px solid #cbd5e1\"><strong>8090<\/strong><\/td>\n<td style=\"padding: 10px;border: 1px solid #cbd5e1\">TCP<\/td>\n<td style=\"padding: 10px;border: 1px solid #cbd5e1\">CyberPanel Web Dashboard<\/td>\n<\/tr>\n<tr>\n<td style=\"padding: 10px;border: 1px solid #cbd5e1\"><strong>80 &amp; 443<\/strong><\/td>\n<td style=\"padding: 10px;border: 1px solid #cbd5e1\">TCP \/ UDP<\/td>\n<td style=\"padding: 10px;border: 1px solid #cbd5e1\">HTTP &amp; HTTPS Web Traffic (QUIC \/ HTTP\/3)<\/td>\n<\/tr>\n<tr>\n<td style=\"padding: 10px;border: 1px solid #cbd5e1\"><strong>7080<\/strong><\/td>\n<td style=\"padding: 10px;border: 1px solid #cbd5e1\">TCP<\/td>\n<td style=\"padding: 10px;border: 1px solid #cbd5e1\">OpenLiteSpeed WebAdmin Console<\/td>\n<\/tr>\n<tr>\n<td style=\"padding: 10px;border: 1px solid #cbd5e1\"><strong>21 &amp; 40110-40210<\/strong><\/td>\n<td style=\"padding: 10px;border: 1px solid #cbd5e1\">TCP<\/td>\n<td style=\"padding: 10px;border: 1px solid #cbd5e1\">FTP &amp; Passive FTP Data Range<\/td>\n<\/tr>\n<tr>\n<td style=\"padding: 10px;border: 1px solid #cbd5e1\"><strong>25, 587, 465, 993<\/strong><\/td>\n<td style=\"padding: 10px;border: 1px solid #cbd5e1\">TCP<\/td>\n<td style=\"padding: 10px;border: 1px solid #cbd5e1\">Mail Services (SMTP, SMTPS, IMAP SSL)<\/td>\n<\/tr>\n<tr>\n<td style=\"padding: 10px;border: 1px solid #cbd5e1\"><strong>53<\/strong><\/td>\n<td style=\"padding: 10px;border: 1px solid #cbd5e1\">TCP \/ UDP<\/td>\n<td style=\"padding: 10px;border: 1px solid #cbd5e1\">PowerDNS Name Server<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<hr style=\"margin: 30px 0;border: none;border-top: 1px solid #e2e8f0\" \/>\n<h2>Step 3: Run the CyberPanel Automated Installation Script<\/h2>\n<p>CyberPanel provides an official, automated bash installer that configures OpenLiteSpeed, MariaDB, Python, PHP extensions, and security firewalls automatically.<\/p>\n<p>Execute the following one-line command in your terminal:<\/p>\n<pre style=\"background-color: #1e293b;color: #f8fafc;padding: 14px 18px;border-radius: 6px\"><code>sh &lt;(curl https:\/\/cyberpanel.net\/install.sh || wget -O - https:\/\/cyberpanel.net\/install.sh)<\/code><\/pre>\n<hr style=\"margin: 30px 0;border: none;border-top: 1px solid #e2e8f0\" \/>\n<h2>Step 4: Interactive Installer Configuration Walkthrough<\/h2>\n<p>Once the installer script initializes, it will present a series of interactive configuration prompts:<\/p>\n<ol style=\"padding-left: 20px;line-height: 1.8\">\n<li><strong>Select Installation Type:<\/strong>\n<p>Type <code>1<\/code> to choose <strong>Install CyberPanel<\/strong>.\n    <\/li>\n<li><strong>Select Web Server Version:<\/strong>\n<p>Type <code>1<\/code> for <strong>CyberPanel with OpenLiteSpeed<\/strong> (Free, open-source, fully-featured).\n    <\/li>\n<li><strong>Install Full Services:<\/strong>\n<p>Type <code>Y<\/code> to install full service components (PowerDNS, Postfix Mail Server, and Pure-FTPd).\n    <\/li>\n<li><strong>Remote MySQL Database:<\/strong>\n<p>Type <code>N<\/code> unless you want to connect to an external managed database instance.\n    <\/li>\n<li><strong>CyberPanel Admin Password:<\/strong>\n<p>Press <code>s<\/code> to set a strong custom password, or <code>d<\/code> for the default password.\n    <\/li>\n<li><strong>Install Memcached Extension:<\/strong>\n<p>Type <code>Y<\/code> to enable Memcached caching.\n    <\/li>\n<li><strong>Install Redis Extension:<\/strong>\n<p>Type <code>Y<\/code> to enable Redis server and PHP extensions for high-speed object caching.\n    <\/li>\n<li><strong>Enable WatchDog:<\/strong>\n<p>Type <code>Y<\/code> to automatically restart any critical service (OpenLiteSpeed, MariaDB) if it experiences high load or crashes.\n    <\/li>\n<\/ol>\n<p>The installation script will now compile dependencies, download OpenLiteSpeed packages, and configure system services. This typically takes between <strong>5 to 12 minutes<\/strong>.<\/p>\n<div style=\"background-color: #f0fdf4;border-left: 4px solid #16a34a;padding: 14px 18px;margin: 20px 0;border-radius: 4px\">\n    <strong>\ud83c\udf89 Installation Complete!<\/strong> Upon completion, the terminal will print your administrative credentials, server IP, and dashboard access URL. It will ask if you wish to restart the server: type <code>y<\/code> to reboot.\n<\/div>\n<hr style=\"margin: 30px 0;border: none;border-top: 1px solid #e2e8f0\" \/>\n<h2>Step 5: Accessing CyberPanel Dashboard on Port 8090<\/h2>\n<p>Once your server finishes rebooting, open your web browser and navigate to your CyberPanel URL:<\/p>\n<pre style=\"background-color: #1e293b;color: #f8fafc;padding: 14px 18px;border-radius: 6px\"><code>https:\/\/your-server-ip:8090<\/code><\/pre>\n<div style=\"background-color: #eff6ff;border-left: 4px solid #3b82f6;padding: 12px 18px;margin: 15px 0;border-radius: 4px\">\n    <strong>\ud83d\udca1 Note on SSL Warnings:<\/strong> During your initial login, your browser may display a &#8220;Your connection is not private&#8221; warning (Self-Signed Certificate). Click <em>Advanced<\/em> &gt; <em>Proceed to IP (unsafe)<\/em> to access the login screen.\n<\/div>\n<p>Log in with:<\/p>\n<ul>\n<li><strong>Username:<\/strong> <code>admin<\/code><\/li>\n<li><strong>Password:<\/strong> The password you created during installation (or default <code>1234567<\/code>).<\/li>\n<\/ul>\n<hr style=\"margin: 30px 0;border: none;border-top: 1px solid #e2e8f0\" \/>\n<h2>Step 6: Secure CyberPanel with a Free Let&#8217;s Encrypt Hostname SSL<\/h2>\n<p>To eliminate browser warnings and encrypt admin panel traffic:<\/p>\n<ol style=\"padding-left: 20px;line-height: 1.8\">\n<li>Ensure your hostname (e.g., <code>panel.yourdomain.com<\/code>) has an <strong>A record<\/strong> pointing to your server&#8217;s IP.<\/li>\n<li>In CyberPanel, go to <strong>SSL &gt; Hostname SSL<\/strong> in the left sidebar.<\/li>\n<li>Select your domain name from the dropdown list.<\/li>\n<li>Click <strong>Issue SSL<\/strong>. CyberPanel will automatically fetch and install a trusted Let&#8217;s Encrypt certificate.<\/li>\n<li>You can now access your dashboard securely at <code>https:\/\/panel.yourdomain.com:8090<\/code>.<\/li>\n<\/ol>\n<hr style=\"margin: 30px 0;border: none;border-top: 1px solid #e2e8f0\" \/>\n<h2>Step 7: Deploy Your First WordPress Site with LSCache (1-Click)<\/h2>\n<p>One of CyberPanel&#8217;s standout features is its automated WordPress deployment with server-level LiteSpeed Cache:<\/p>\n<ol style=\"padding-left: 20px;line-height: 1.8\">\n<li>From the left navigation menu, click <strong>WordPress &gt; Deploy WordPress<\/strong>.<\/li>\n<li>Fill in your website details (Domain Name, Site Title, Admin Username, Password, Email).<\/li>\n<li>Check the <strong>LSCache<\/strong> box to enable server-level caching.<\/li>\n<li>Click <strong>Create Website<\/strong>. CyberPanel will create the virtual host, configure the MySQL database, install WordPress, and apply the LiteSpeed Cache plugin automatically.<\/li>\n<\/ol>\n<hr style=\"margin: 30px 0;border: none;border-top: 1px solid #e2e8f0\" \/>\n<h2>Troubleshooting Common Installation Issues on Ubuntu 24.04<\/h2>\n<h3>1. Connection Timed Out when opening Port 8090<\/h3>\n<p>If you cannot reach <code>https:\/\/your-server-ip:8090<\/code>, check if the firewall is blocking the port:<\/p>\n<pre style=\"background-color: #1e293b;color: #f8fafc;padding: 14px 18px;border-radius: 6px\"><code>sudo ufw allow 8090\/tcp &amp;&amp; sudo ufw reload<\/code><\/pre>\n<p>Also verify that port 8090 is allowed in your cloud provider&#8217;s security groups (AWS\/Hetzner\/Vultr\/DigitalOcean).<\/p>\n<h3>2. Forgotten Admin Password<\/h3>\n<p>If you forget your CyberPanel admin password, reset it instantly from SSH terminal:<\/p>\n<pre style=\"background-color: #1e293b;color: #f8fafc;padding: 14px 18px;border-radius: 6px\"><code>adminPass your_new_password_here<\/code><\/pre>\n<hr style=\"margin: 35px 0;border: none;border-top: 1px solid #e2e8f0\" \/>\n<h2>Frequently Asked Questions (FAQ)<\/h2>\n<div style=\"margin-bottom: 16px;border: 1px solid #e2e8f0;border-radius: 8px;padding: 18px 20px;background-color: #fafbfc\">\n<h3 style=\"margin: 0 0 10px 0;font-size: 1.1em;color: #1e293b\">\u2753 Is CyberPanel completely free on Ubuntu 24.04?<\/h3>\n<p style=\"margin: 0;color: #475569;line-height: 1.6\">Yes. CyberPanel with OpenLiteSpeed is 100% free and open-source. There are no domain limits, account limits, or hidden fees. Enterprise LiteSpeed licenses are optional if you require proprietary ELS features.<\/p>\n<\/div>\n<div style=\"margin-bottom: 16px;border: 1px solid #e2e8f0;border-radius: 8px;padding: 18px 20px;background-color: #fafbfc\">\n<h3 style=\"margin: 0 0 10px 0;font-size: 1.1em;color: #1e293b\">\u2753 Can I run multiple WordPress sites on one CyberPanel server?<\/h3>\n<p style=\"margin: 0;color: #475569;line-height: 1.6\">Yes. CyberPanel supports unlimited domains, subdomains, and WordPress installations, limited only by your VPS RAM and CPU resources.<\/p>\n<\/div>\n<div style=\"margin-bottom: 25px;border: 1px solid #e2e8f0;border-radius: 8px;padding: 18px 20px;background-color: #fafbfc\">\n<h3 style=\"margin: 0 0 10px 0;font-size: 1.1em;color: #1e293b\">\u2753 Does CyberPanel support automated daily backups?<\/h3>\n<p style=\"margin: 0;color: #475569;line-height: 1.6\">Yes. CyberPanel includes automated backup schedulers that can store backups locally, over remote SFTP, or directly to AWS S3 and Google Drive.<\/p>\n<\/div>\n<div style=\"background-color: #f8fafc;border: 1px solid #e2e8f0;border-left: 4px solid #0ea5e9;padding: 20px;border-radius: 8px;margin: 30px 0\">\n<h3 style=\"margin-top: 0;color: #0f172a;font-size: 18px;display: flex;align-items: center\">\n        <span style=\"margin-right: 8px\">\ud83d\udd17<\/span> Recommended Related Technical Guides:<br \/>\n    <\/h3>\n<ul style=\"margin: 10px 0 0 0;padding-left: 20px;line-height: 1.8\">\n<li><a href=\"https:\/\/cpanelfree.com\/blog\/how-to-get-free-cloud-vps-forever\/\" style=\"color: #0284c7;text-decoration: none;font-weight: 600\">How to Get a Free Cloud VPS Forever<\/a><\/li>\n<li><a href=\"https:\/\/cpanelfree.com\/blog\/oracle-cloud-always-free-vps-setup-guide\/\" style=\"color: #0284c7;text-decoration: none;font-weight: 600\">Oracle Cloud Always Free VPS Setup Guide<\/a><\/li>\n<li><a href=\"https:\/\/cpanelfree.com\/blog\/best-cheap-cloud-vps-providers-2026\/\" style=\"color: #0284c7;text-decoration: none;font-weight: 600\">Top 7 Best Cheap Cloud VPS Providers in 2026<\/a><\/li>\n<li><a href=\"https:\/\/cpanelfree.com\/blog\/best-free-web-hosting-2026\/\" style=\"color: #0284c7;text-decoration: none;font-weight: 600\">Top 10 Best Free Web Hosting Services<\/a><\/li>\n<li><a href=\"https:\/\/cpanelfree.com\/#plans\" style=\"color: #0284c7;text-decoration: none;font-weight: 600\">Explore $0 Free cPanel Web Hosting Plans<\/a><\/li>\n<\/ul>\n<\/div>\n<div style=\"background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);color: #ffffff;padding: 26px 22px;border-radius: 8px;margin-top: 30px\">\n<h3 style=\"color: #ffffff;margin-top: 0;font-size: 1.25em\">\ud83c\udfaf Conclusion &amp; Next Steps<\/h3>\n<p style=\"color: #cbd5e1;line-height: 1.7;margin-bottom: 0\">Installing <strong>CyberPanel on Ubuntu 24.04 LTS<\/strong> gives you an enterprise-grade, blazingly fast web hosting environment without recurring cPanel license fees. With OpenLiteSpeed, built-in Redis caching, and automated Let&#8217;s Encrypt SSL, you get peak performance for WordPress, WooCommerce, and custom web applications right out of the box.<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Learn how to install CyberPanel with OpenLiteSpeed on Ubuntu 24.04 LTS. Follow our complete step-by-step tutorial with server prerequisites, firewall setup &amp; SSL.<\/p>\n","protected":false},"author":1,"featured_media":1130,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[51,1],"tags":[45,54,53,52,50,49,55],"class_list":["post-1127","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","category-web-hosting-news","tag-cyberpanel","tag-linux-tutorials","tag-openlitespeed","tag-ubuntu-24-04","tag-vps","tag-web-hosting","tag-wordpress-hosting"],"_links":{"self":[{"href":"https:\/\/cpanelfree.com\/blog\/wp-json\/wp\/v2\/posts\/1127","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cpanelfree.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cpanelfree.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cpanelfree.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/cpanelfree.com\/blog\/wp-json\/wp\/v2\/comments?post=1127"}],"version-history":[{"count":3,"href":"https:\/\/cpanelfree.com\/blog\/wp-json\/wp\/v2\/posts\/1127\/revisions"}],"predecessor-version":[{"id":1598,"href":"https:\/\/cpanelfree.com\/blog\/wp-json\/wp\/v2\/posts\/1127\/revisions\/1598"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cpanelfree.com\/blog\/wp-json\/wp\/v2\/media\/1130"}],"wp:attachment":[{"href":"https:\/\/cpanelfree.com\/blog\/wp-json\/wp\/v2\/media?parent=1127"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cpanelfree.com\/blog\/wp-json\/wp\/v2\/categories?post=1127"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cpanelfree.com\/blog\/wp-json\/wp\/v2\/tags?post=1127"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}