{"id":17141,"date":"2026-01-28T16:51:00","date_gmt":"2026-01-28T11:21:00","guid":{"rendered":"https:\/\/www.youstable.com\/blog\/?p=17141"},"modified":"2026-01-28T16:51:40","modified_gmt":"2026-01-28T11:21:40","slug":"install-ispconfig-on-ubuntu","status":"publish","type":"post","link":"https:\/\/www.youstable.com\/blog\/install-ispconfig-on-ubuntu","title":{"rendered":"How To Install ISPConfig on Ubuntu 24.04 &#8211; Easy Guide"},"content":{"rendered":"\n<p><strong>To install ISPConfig on Ubuntu<\/strong> 24.04, set a valid FQDN, open required ports, and run the official auto installer. Update the system, configure hostname and DNS, then execute: curl -sSL https:\/\/get.ispconfig.org | sudo bash. Choose Apache or Nginx, enable mail, DNS, and SSL. Log in at https:\/\/your server:8080 to manage websites, mail, and DNS.<\/p>\n\n\n\n<p>This step by step guide shows how to install ISPConfig on Ubuntu 24.04 LTS safely and correctly, using best practices from real world hosting deployments. Whether you\u2019re building a personal hosting stack or a small reseller platform, you\u2019ll learn the fastest path to a secure, production ready ISPConfig server.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"what-is-ispconfig-and-why-use-ubuntu-24-04\">What is ISPConfig and Why Use Ubuntu 24.04?<\/h2>\n\n\n\n<p>ISPConfig is an open source hosting control panel that lets you manage websites, mail, DNS, FTP, databases, and more via a web interface. Ubuntu 24.04 (Noble Numbat) is the latest LTS, offering long term security updates, PHP 8.3, and modern system libraries, ideal for a stable, performant hosting stack.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"before-you-start-prerequisites-and-planning\">Before You Start: Prerequisites and Planning<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Server:<\/strong> Fresh Ubuntu 24.04 LTS (VPS or Dedicated). 2 vCPU\/4 GB RAM minimum for full stack (web + mail + DNS).<\/li>\n\n\n\n<li>Root or sudo access.<\/li>\n\n\n\n<li><strong>Domain:<\/strong> Create an A record for a fully qualified domain name (FQDN), e.g., panel.yourdomain.com pointing to your server\u2019s public IP.<\/li>\n\n\n\n<li><strong>Reverse DNS (for mail):<\/strong> Ask your provider to set PTR to the same FQDN.<\/li>\n\n\n\n<li><strong>Firewall:<\/strong> Ability to open ports 22, 80, 443, 8080, mail ports (25, 465, 587, 110, 143, 993, 995), DNS (53 TCP\/UDP), FTP (20, 21, plus passive range).<\/li>\n<\/ul>\n\n\n\n<p>If you prefer a managed start, <strong><a href=\"https:\/\/www.youstable.com\/vps-hosting\/\">YouStable\u2019s VPS plans<\/a><\/strong> can be provisioned and optimized for ISPConfig, leaving you to focus on sites, not server plumbing.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"install-ispconfig-on-ubuntu-24-04-step-by-step\">Install ISPConfig on Ubuntu 24.04 &#8211; Step-by-Step<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"1-update-and-secure-your-server\">1) Update and Secure Your Server<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update &amp;&amp; sudo apt -y upgrade\nsudo apt -y install curl wget ufw software-properties-common<\/code><\/pre>\n\n\n\n<p>Enable the firewall and allow essential services:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ufw allow OpenSSH\nsudo ufw allow 80,443\/tcp\nsudo ufw allow 8080\/tcp\nsudo ufw allow 25,465,587\/tcp\nsudo ufw allow 110,143,993,995\/tcp\nsudo ufw allow 53\nsudo ufw allow 20,21\/tcp\nsudo ufw allow 40110:40210\/tcp\necho \"y\" | sudo ufw enable\nsudo ufw status<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"2-set-hostname-and-hosts-file-fqdn\">2) Set Hostname and Hosts File (FQDN)<\/h3>\n\n\n\n<p>Replace panel.example.com with your FQDN that already points to your server\u2019s public IP:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo hostnamectl set-hostname panel.example.com\necho \"127.0.1.1 panel.example.com panel\" | sudo tee -a \/etc\/hosts\nhostnamectl<\/code><\/pre>\n\n\n\n<p>A correct FQDN is critical for SSL, mail deliverability, and the installer\u2019s checks.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"3-optional-create-a-sudo-user\">3) Optional: Create a Sudo User<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo adduser devops\nsudo usermod -aG sudo devops<\/code><\/pre>\n\n\n\n<p>You can continue as your sudo user for the remaining steps.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"4-run-the-official-ispconfig-auto-installer\">4) Run the Official ISPConfig Auto Installer<\/h3>\n\n\n\n<p>The auto installer provisions the full stack (web, mail, DNS, FTP, database, malware\/spam filters and more) with minimal prompts:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>curl -sSL https:\/\/get.ispconfig.org | sudo bash<\/code><\/pre>\n\n\n\n<p><strong>Common choices you\u2019ll be asked for:<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Web server:<\/strong> Apache or Nginx (both work; see comparison below).<\/li>\n\n\n\n<li><strong>Database: <\/strong>MariaDB (default on 24.04; good performance).<\/li>\n\n\n\n<li><strong>Mail stack:<\/strong> Postfix + Dovecot, with SpamAssassin, ClamAV, and Rspamd options depending on prompts.<\/li>\n\n\n\n<li><strong>DNS:<\/strong> Bind9 for authoritative DNS.<\/li>\n\n\n\n<li><strong>SSL: <\/strong>Let\u2019s Encrypt (recommended). Ensure your FQDN resolves before enabling.<\/li>\n<\/ul>\n\n\n\n<p><strong>Unattended installs are also possible (view flags):<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>curl -sSL https:\/\/get.ispconfig.org | sudo bash -s -- --help<\/code><\/pre>\n\n\n\n<p>Example unattended pattern (adjust to your needs; verify available flags via &#8211;help):<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Example: prefer Nginx and PHP 8.3, set admin email and hostname\ncurl -sSL https:\/\/get.ispconfig.org | sudo bash -s -- \\\n  --use-nginx \\\n  --use-php=8.3 \\\n  --unattended \\\n  --admin-email admin@example.com \\\n  --hostname panel.example.com<\/code><\/pre>\n\n\n\n<p>At the end, the installer prints ISPConfig admin credentials and whether Let\u2019s Encrypt succeeded. Save these details securely.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"5-apache-vs-nginx-for-ispconfig-quick-guidance\">5) Apache vs Nginx for ISPConfig (Quick Guidance)<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Nginx:<\/strong> Faster static file delivery, leaner <a href=\"https:\/\/www.youstable.com\/blog\/fix-high-physical-memory-usage-in-cpanel\/\">memory usage<\/a>, excellent for high concurrency sites. Fewer .htaccess style overrides (rules are defined in vhost templates).<\/li>\n\n\n\n<li><strong>Apache: <\/strong>Broad .htaccess compatibility (useful for many PHP apps), rich module ecosystem, slightly heavier under load than Nginx.<\/li>\n\n\n\n<li><strong>Recommendation:<\/strong> Nginx for performance first stacks; Apache for compatibility first stacks.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"6-first-login-and-panel-access\">6) First Login and Panel Access<\/h3>\n\n\n\n<p><strong>Open the panel at:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>https:&#47;&#47;&lt;server-ip&gt;:8080\nhttps:\/\/panel.example.com:8080<\/code><\/pre>\n\n\n\n<p>Use the admin username and the password shown by the installer. If Let\u2019s Encrypt wasn\u2019t issued during install, you can add an LE certificate from within ISPConfig once DNS is correct.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"verify-services-after-installation\">Verify Services After Installation<\/h2>\n\n\n\n<p>Ensure all core services are running. Depending on your choices, check the following:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># Web\nsudo systemctl status nginx || sudo systemctl status apache2\n\n# PHP-FPM (adjust version if different)\nsudo systemctl status php8.3-fpm\n\n# Database\nsudo systemctl status mariadb\n\n# Mail\nsudo systemctl status postfix\nsudo systemctl status dovecot\n\n# DNS\nsudo systemctl status bind9\n\n# FTP\nsudo systemctl status pure-ftpd-mysql\n\n# Security\/antispam (if installed)\nsudo systemctl status spamassassin\nsudo systemctl status clamav-daemon\nsudo systemctl status fail2ban<\/code><\/pre>\n\n\n\n<p><strong>Confirm listening ports:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo ss -tulpn | egrep ':80|:443|:8080|:25|:465|:587|:110|:143|:993|:995|:53|:21|:3306'<\/code><\/pre>\n\n\n\n<p><strong>Quick PHP test:<\/strong> Create a website in ISPConfig and place a phpinfo.php file to verify PHP-FPM works end to end.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"post-install-best-practices\">Post Install Best Practices<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Change admin password immediately and store it in a password manager.<\/li>\n\n\n\n<li>Create a non admin user and delegate site management where possible.<\/li>\n\n\n\n<li>Set server time zone and NTP: sudo timedatectl set timezone Region\/City.<\/li>\n\n\n\n<li>Configure automatic updates for security patches: sudo dpkg reconfigure unattended upgrades.<\/li>\n\n\n\n<li>Set Let\u2019s Encrypt for panel and all virtual hosts. Ensure DNS points correctly first.<\/li>\n\n\n\n<li><strong>For mail deliverability:<\/strong> set SPF, DKIM, and DMARC records in your DNS; align rDNS with your FQDN.<\/li>\n\n\n\n<li><strong>Backups: <\/strong>enable per site backups and offsite copies (object storage or remote rsync).<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"creating-your-first-website-dns-zone-and-mailbox\">Creating Your First Website, DNS Zone, and Mailbox<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Website:<\/strong> Sites \u2192 Add new website \u2192 choose client, domain, PHP mode (PHP-FPM), and enable Let\u2019s Encrypt.<\/li>\n\n\n\n<li><strong>DNS:<\/strong> DNS \u2192 Add new zone \u2192 set NS records and A\/AAAA\/CNAME records as needed. Point your registrar\u2019s nameservers or use glue records if operating your own DNS.<\/li>\n\n\n\n<li><strong>Mail:<\/strong> Email \u2192 Add domain \u2192 Add mailbox \u2192 enable spam\/virus filters as required. Test via IMAP (993) and SMTP submission (587).<\/li>\n<\/ul>\n\n\n\n<p>If you\u2019re migrating from cPanel\/Plesk, plan a staged cutover (DNS TTL reduction, data sync, final sync, then go live) to minimize downtime. YouStable\u2019s migration desk can assist with zero downtime strategies.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"troubleshooting-common-issues\">Troubleshooting Common Issues<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"lets-encrypt-failed-during-install\">Let\u2019s Encrypt failed during install<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ensure the FQDN resolves to your server\u2019s public IP.<\/li>\n\n\n\n<li>Port 80 and 443 must be open and not blocked by your provider.<\/li>\n\n\n\n<li>Retry from the panel or install a certificate manually once <a href=\"https:\/\/www.youstable.com\/blog\/dns-propagation\/\">DNS propagates<\/a>.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"port-8080-not-accessible\">Port 8080 not accessible<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Confirm firewall rules (UFW) and any cloud provider security group rules.<\/li>\n\n\n\n<li>Verify the service is running and listening: sudo ss -tulpn | grep :8080.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"mail-deliverability-issues\">Mail deliverability issues<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Set PTR\/rDNS to your mail server\u2019s FQDN.<\/li>\n\n\n\n<li>Publish SPF, DKIM, and DMARC records.<\/li>\n\n\n\n<li>Avoid sending from newly created IPs at volume; warm up gradually.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"apache-nginx-conflicts-or-php-errors\">Apache\/Nginx conflicts or PHP errors<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Check vhost configs generated by ISPConfig; adjust per site PHP-FPM versions in site settings.<\/li>\n\n\n\n<li>Examine web server logs inside the website\u2019s log directory for exact error messages.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"why-consider-youstable-for-ispconfig-hosting\">Why Consider YouStable for ISPConfig Hosting<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ready for Ubuntu 24.04 LTS with modern CPUs and NVMe storage.<\/li>\n\n\n\n<li>Optional pre-optimization for Nginx\/PHP-FPM, MariaDB tuning, and mail deliverability.<\/li>\n\n\n\n<li>24\u00d77 support with seasoned Linux admins who know ISPConfig in production.<\/li>\n<\/ul>\n\n\n\n<p>If you need managed assistance, our team can pre-install ISPConfig, harden the stack, and help migrate your first sites.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"faqs\">FAQs<\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1769235641191\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"is-ispconfig-compatible-with-ubuntu-24-04-lts\">Is ISPConfig compatible with Ubuntu 24.04 LTS?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes. ISPConfig works on Ubuntu 24.04 LTS and supports current packages like PHP 8.3 and MariaDB. Use the official auto installer to handle dependencies and correct configurations for Noble Numbat.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1769235649265\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"which-is-better-for-ispconfig-apache-or-nginx\">Which is better for ISPConfig: Apache or Nginx?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Both are supported. Choose Nginx for higher concurrency and performance; choose Apache for maximum compatibility with .htaccess driven applications. For new deployments, Nginx + PHP-FPM is a strong default.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1769235655760\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"can-i-use-the-auto-installer-for-a-multi-server-setup\">Can I use the auto installer for a multi server setup?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>The auto installer is designed to streamline single server installs. Multi server clusters are possible with ISPConfig but require a more manual, planned setup following the official multi server documentation.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1769235663013\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"what-ports-must-be-open-for-ispconfig-to-work\">What ports must be open for ISPConfig to work?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p><strong>Minimum: <\/strong>22 (SSH), 8080 (panel), 80\/443 (web), 25\/465\/587 (SMTP), 110\/143\/993\/995 (POP3\/IMAP), 53 TCP\/UDP (DNS), 20\/21 and 40110\u201340210 (FTP passive range). Adjust your firewall and cloud security groups accordingly.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1769235678811\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \" class=\"rank-math-question \" id=\"how-do-i-secure-mail-and-improve-deliverability\">How do I secure mail and improve deliverability?<\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Set your server\u2019s rDNS to the mail FQDN, publish SPF, DKIM, and DMARC, enable malware\/spam scanning, and maintain a clean IP reputation. Warm up new IPs slowly and monitor bounces and feedback loops.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\"\/>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2>\n\n\n\n<p><strong>With a correct FQDN<\/strong>, open ports, and the official auto installer, installing ISPConfig on Ubuntu 24.04 is fast and reliable. Follow the verification and hardening steps above and you\u2019ll have a secure, modern hosting panel ready for production workloads. If you want a head start, YouStable can provision and optimize an ISPConfig ready VPS for you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>To install ISPConfig on Ubuntu 24.04, set a valid FQDN, open required ports, and run the official auto installer. Update [&hellip;]<\/p>\n","protected":false},"author":21,"featured_media":18166,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[350],"tags":[],"class_list":["post-17141","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-knowledgebase"],"acf":[],"featured_image_src":"https:\/\/www.youstable.com\/blog\/wp-content\/uploads\/2026\/01\/How-To-Install-ISPConfig-on-Ubuntu-Easy-Guide.jpg","author_info":{"display_name":"Sanjeet Chauhan","author_link":"https:\/\/www.youstable.com\/blog\/author\/sanjeet"},"_links":{"self":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/17141","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/users\/21"}],"replies":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/comments?post=17141"}],"version-history":[{"count":11,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/17141\/revisions"}],"predecessor-version":[{"id":18168,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/posts\/17141\/revisions\/18168"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/media\/18166"}],"wp:attachment":[{"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/media?parent=17141"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/categories?post=17141"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.youstable.com\/blog\/wp-json\/wp\/v2\/tags?post=17141"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}