{"id":24988,"date":"2025-09-08T12:00:00","date_gmt":"2025-09-08T10:00:00","guid":{"rendered":"https:\/\/contabo.com\/blog\/?p=24988"},"modified":"2025-09-20T20:49:10","modified_gmt":"2025-09-20T18:49:10","slug":"how-to-install-php-on-ubuntu-vps-a-comprehensive-guide","status":"publish","type":"post","link":"https:\/\/contabo.com\/blog\/how-to-install-php-on-ubuntu-vps-a-comprehensive-guide\/","title":{"rendered":"How to Install PHP on Ubuntu VPS \u2013 a Comprehensive Guide"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"800\" height=\"420\" src=\"https:\/\/contabo.com\/blog\/wp-content\/uploads\/2025\/09\/blog-head_how2-install-php-on-ubuntu-vps-1-1.jpg\" alt=\"\" class=\"wp-image-25154\" srcset=\"https:\/\/contabo.com\/blog\/wp-content\/uploads\/2025\/09\/blog-head_how2-install-php-on-ubuntu-vps-1-1.jpg 800w, https:\/\/contabo.com\/blog\/wp-content\/uploads\/2025\/09\/blog-head_how2-install-php-on-ubuntu-vps-1-1-600x315.jpg 600w, https:\/\/contabo.com\/blog\/wp-content\/uploads\/2025\/09\/blog-head_how2-install-php-on-ubuntu-vps-1-1-768x403.jpg 768w\" sizes=\"auto, (max-width: 800px) 100vw, 800px\" \/><\/figure>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>Installing PHP on Linux is a straightforward process, but doing it on a VPS gives you more control and flexibility. Whether you\u2019re setting up a new server for a project or migrating an existing site, a Linux PHP install ensures you can run frameworks and content management systems exactly the way you want. Using a PHP VPS means you can fine-tune performance, adjust configurations, and keep your environment secure.<\/p>\n\n\n\n<p>This guide walks you through how to install PHP on Linux distributions like Ubuntu, covering everything from updating package lists to configuring it with Nginx or Apache. You\u2019ll also learn how to add extensions, test your installation, and set up the server for long-term stability and performance.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-to-install-php-on-ubuntu\"><strong>How to Install PHP on Ubuntu<\/strong><\/h2>\n\n\n\n<p>When it comes to installing PHP, Ubuntu offers a reliable and straightforward process. The official repositories include multiple PHP versions, so you can choose the one that best fits your project. Setting up PHP on Ubuntu is quick, and the same steps work across most modern Ubuntu releases.<\/p>\n\n\n\n<p>In the next subsections, we\u2019ll update the system\u2019s package list, install PHP itself, run command line tests, and set it up with popular web servers like Nginx and Apache. You\u2019ll also see how to install PHP extensions to add extra functionality for your applications.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-package-list-update\"><strong>Package list update<\/strong><\/h2>\n\n\n\n<p>Before installing any software, it\u2019s best to make sure your system knows about the latest available packages. On Ubuntu, this is done with the apt update command. Open your terminal and run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update<\/code><\/pre>\n\n\n\n<p>This refreshes the package index so your VPS can pull the newest versions from the repositories. Skipping this step might leave you with outdated dependencies, which could cause issues during or after the PHP installation.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-install-php-on-ubuntu\"><strong>Install PHP on Ubuntu<\/strong><\/h2>\n\n\n\n<p>Once your package list is up to date, you can proceed with the installation. Ubuntu makes this easy with the <a href=\"https:\/\/contabo.com\/blog\/managing-packages-with-the-apt-package-manager\/\">apt package manager<\/a>. To perform an Ubuntu PHP install, run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install php<\/code><\/pre>\n\n\n\n<p>This will install the default PHP version provided by Ubuntu\u2019s repositories, along with the basic modules needed for most applications.<\/p>\n\n\n\n<p>If you need a specific version, such as PHP 8.2, you can specify it explicitly:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install php8.2<\/code><\/pre>\n\n\n\n<p>After the process finishes, PHP is ready to use on your VPS. In the next step, we\u2019ll verify the installation from the command line.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-command-line-php-tests\"><strong>Command line PHP tests<\/strong><\/h2>\n\n\n\n<p>After installation, it\u2019s a good idea to confirm that PHP is working correctly from the terminal. This helps verify that the PHP command line interface is available and running the expected version.<\/p>\n\n\n\n<p>Check your PHP version with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>php -v<\/code><\/pre>\n\n\n\n<p>You should see details about the installed version, along with build information. To run a quick test, you can also execute:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>php -r 'echo \"PHP is running\\n\";'<\/code><\/pre>\n\n\n\n<p>If you see the output without errors, your command line PHP setup is working as intended.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-install-php-with-nginx\"><strong>Install PHP with Nginx<\/strong><\/h2>\n\n\n\n<p>If you\u2019re using Nginx as your web server, you\u2019ll need to install PHP along with PHP-FPM (FastCGI Process Manager) to handle dynamic content. Unlike Apache, Nginx doesn\u2019t process PHP natively, so PHP-FPM acts as the bridge between the server and your scripts.<\/p>\n\n\n\n<p>Install PHP-FPM with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install php-fpm<\/code><\/pre>\n\n\n\n<p>Once installed, configure Nginx to pass PHP requests to PHP-FPM. Open your site\u2019s Nginx configuration file (usually in \/etc\/nginx\/sites-available\/) and update the server block with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>location ~ \\.php$ {\n\n&nbsp;&nbsp;&nbsp; include snippets\/fastcgi-php.conf;\n\n&nbsp;&nbsp;&nbsp; fastcgi_pass unix:\/var\/run\/php\/php8.2-fpm.sock;\n\n}<\/code><\/pre>\n\n\n\n<p>Replace php8.2-fpm.sock with the correct version for your installation. After you configure Nginx, restart the server:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart nginx<\/code><\/pre>\n\n\n\n<p>Your Nginx setup can now serve PHP pages without issues.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-install-php-with-apache\"><strong>Install PHP with Apache<\/strong><\/h2>\n\n\n\n<p>Apache can process PHP directly through the libapache2-mod-php module, making setup simple. To install PHP with Apache, run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install php libapache2-mod-php<\/code><\/pre>\n\n\n\n<p>This will enable PHP support for your Apache server automatically. If you need a specific PHP version, include it in the command, for example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install php8.2 libapache2-mod-php8.2<\/code><\/pre>\n\n\n\n<p>After installation, Apache will recognize and execute .php files without extra configuration. If you want to tweak settings or configure Apache for better performance, you can edit the PHP settings in \/etc\/php\/8.2\/apache2\/php.ini and then restart Apache:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart apache2<\/code><\/pre>\n\n\n\n<p>Your server is now ready to serve PHP content through Apache.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-install-php-extensions\"><strong>Install PHP extensions<\/strong><\/h2>\n\n\n\n<p>Many PHP applications require extra functionality beyond the core installation. This is where PHP extensions come in \u2014 they add features such as database drivers, image processing, or encryption support.<\/p>\n\n\n\n<p>To install PHP extensions, use:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install php-&#91;extension_name]<\/code><\/pre>\n\n\n\n<p>For example, to enable MySQL support:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install php-mysql<\/code><\/pre>\n\n\n\n<p>You can install multiple extensions at once:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install php-mysql php-xml php-curl<\/code><\/pre>\n\n\n\n<p>After installing, restart your web server or PHP-FPM so the changes take effect. You can check which extensions are active by running:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>php -m<\/code><\/pre>\n\n\n\n<p>With the right extensions in place, PHP on your Ubuntu VPS can run a wider range of applications without compatibility issues.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-to-do-after-installing-php-on-ubuntu-vps\">What to do after installing PHP on Ubuntu VPS<\/h2>\n\n\n\n<p>Once PHP is installed, there are a few important steps to prepare your server for real-world use.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Install a database server<\/strong><br>Most web applications need a database. You can install MySQL with:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install mysql-server<\/code><\/pre>\n\n\n\n<p>To learn more about configuring and using MySQL, check our guide: <a href=\"https:\/\/contabo.com\/blog\/open-source-databases-series-mysql\/\">Open-Source Databases Series \u2013 MySQL<\/a>.<\/p>\n\n\n\n<p><a><\/a><a><\/a><a>Or, if you prefer MariaDB, run:<\/a><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install mariadb-server<\/code><\/pre>\n\n\n\n<p>We also have a dedicated article for MariaDB here: <a href=\"https:\/\/contabo.com\/blog\/open-source-databases-series-mariadb\/\">Open-Source Databases Series \u2013 MariaDB<\/a>.<a href=\"#_msocom_1\">[JN1]<\/a>&nbsp;<a href=\"#_msocom_2\">[TM2]<\/a>&nbsp;<a href=\"#_msocom_3\">[JN3]<\/a>&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Set up a Mail Transfer Agent (MTA)<\/strong><\/li>\n<\/ul>\n\n\n\n<p><br>An MTA allows your applications to send emails, such as password resets or notifications. Popular choices include Postfix and Exim. Install Postfix with:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install postfix<\/code><\/pre>\n\n\n\n<p>You can follow our complete mail server setup tutorial here: <a href=\"https:\/\/contabo.com\/blog\/linux-mail-server-setup-and-configuration\/\">Linux Mail Server Setup and Configuration<\/a>.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Secure your installation<\/strong><\/li>\n<\/ul>\n\n\n\n<p>Configure database user permissions, enable firewalls, and review your <code>php.ini<\/code> settings to disable unsafe functions and set proper limits. For additional security, consider using Fail2Ban (<a href=\"https:\/\/contabo.com\/blog\/what-is-fail2ban-and-how-to-use-it-on-a-vps\/\">What Is Fail2Ban and How to Use It on a VPS<\/a>) and setting up a software firewall (<a href=\"https:\/\/contabo.com\/blog\/how-to-setup-a-software-firewall-in-linux-and-windows\/\">How to Setup a Software-Firewall in Linux and Windows<\/a>).<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Test your full stack<\/strong><\/li>\n<\/ul>\n\n\n\n<p>Run a test PHP script connected to your database to make sure PHP, the web server, and your database work together smoothly. Completing these steps will ensure your VPS is ready for production workloads.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-install-php-on-ubuntu-with-contabo-step-by-step\">Install PHP on Ubuntu with Contabo &#8211; Step-by-Step<\/h2>\n\n\n\n<p>If you\u2019re hosting on a Contabo VPS, the process of installing PHP on Ubuntu follows the same steps we\u2019ve covered, but with the added benefit of reliable infrastructure and full root access.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Log in to your VPS<\/strong><br>Use <a href=\"https:\/\/contabo.com\/blog\/establishing-connection-server-ssh\/\">SSH<\/a> to connect:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>ssh username@your_server_ip<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Update package lists<\/strong><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Install PHP<\/strong><\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install php<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Set up with your web server<\/strong><br>If you\u2019re running Nginx, install PHP-FPM and configure Nginx. For Apache, enable the <code>libapache2-mod-php<\/code> module.<\/li>\n\n\n\n<li><strong>Add required PHP extensions<\/strong><br>Install any extensions your application needs, then restart your web server.<\/li>\n<\/ul>\n\n\n\n<p>If you don\u2019t have a VPS yet or want to upgrade, you can explore the available options on <a href=\"https:\/\/contabo.com\/en\/linux-vps\/\">Linux VPS Hosting from Contabo<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-faq-on-how-to-install-php-on-ubuntu-vps\">FAQ on how to install PHP on Ubuntu VPS<\/h2>\n\n\n\n<p><strong>Q1: How do I install PHP extensions on Ubuntu?<\/strong><br>Use the package manager with the extension name. For example:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install php-mysql<\/code><\/pre>\n\n\n\n<p>Replace <code>php-mysql<\/code> with the specific extension you need.<\/p>\n\n\n\n<p><strong>Q2: How can I check or increase the PHP memory limit?<\/strong><br>Open your <code>php.ini<\/code> file (location depends on your PHP version and server setup) and look for:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>memory_limit = 128M<\/code><\/pre>\n\n\n\n<p>Adjust the value, <a>save the file with CTRL+O, exit the editor with CTRL+X,<\/a><a href=\"#_msocom_4\">[IS4]<\/a>&nbsp; and r<a>estart your web server or PHP-FPM with systemctl restart apache2 or systemctl restart php-fpm<\/a><a href=\"#_msocom_5\">[IS5]<\/a>&nbsp;.<\/p>\n\n\n\n<p><strong>Q3: How do I switch between PHP versions?<\/strong><br>You can install multiple versions (e.g., PHP 7.4, PHP 8.2) and use update-alternatives to switch between them:<\/p>\n\n\n\n<p>sudo update-alternatives &#8211;config php<\/p>\n\n\n\n<p><a>This will display a list of installed versions and let you choose the default:<\/a><a href=\"#_msocom_6\">[IS6]<\/a>&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"892\" height=\"289\" src=\"https:\/\/contabo.com\/blog\/wp-content\/uploads\/2025\/09\/image.png\" alt=\"Install PHP on Ubuntu VPS - Switch between PHP versions\" class=\"wp-image-24989\" srcset=\"https:\/\/contabo.com\/blog\/wp-content\/uploads\/2025\/09\/image.png 892w, https:\/\/contabo.com\/blog\/wp-content\/uploads\/2025\/09\/image-600x194.png 600w, https:\/\/contabo.com\/blog\/wp-content\/uploads\/2025\/09\/image-768x249.png 768w\" sizes=\"auto, (max-width: 892px) 100vw, 892px\" \/><\/figure>\n\n\n\n<p><strong>Q4: How do I secure PHP for production?<\/strong><br>To secure PHP for production, disable unsafe functions like exec() and phpinfo() by adding the line disable_functions = exec,phpinfo to your php.ini file, limit resource usage by setting directives like memory_limit = 128M in the same file, and keep your installation up to date using server commands like sudo apt upgrade php and project commands like composer update. Consider using Fail2Ban and a firewall for extra protection.<\/p>\n\n\n\n<p><strong>Q5: What is PHP-FPM and when should I use it?<\/strong><br>PHP-FPM (FastCGI Process Manager) is a PHP process manager designed for high performance, especially when paired with Nginx. It can handle more concurrent requests efficiently compared to the default PHP module in Apache, making it ideal for high-traffic e-commerce sites during a sale, or for applications processing long-running tasks like a video upload without slowing down the site for other users.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Installing PHP on Linux is a straightforward process, but doing it on a VPS gives you more control and flexibility. Whether you\u2019re setting up a new server for a project or migrating an existing site, a Linux PHP install ensures you can run frameworks and content management systems exactly the way you want. Using a [&hellip;]<\/p>\n","protected":false},"author":50,"featured_media":25151,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"_uag_custom_page_level_css":"","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":"","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":"set","ast-page-background-enabled":"default","ast-page-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":"","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-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":"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":""},"mobile":{"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":""}},"footnotes":""},"categories":[18],"tags":[],"ppma_author":[1491],"class_list":["post-24988","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"uagb_featured_image_src":{"full":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2025\/09\/blog-head_how2-install-php-on-ubuntu-vps-1.jpg",800,420,false],"thumbnail":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2025\/09\/blog-head_how2-install-php-on-ubuntu-vps-1-150x150.jpg",150,150,true],"medium":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2025\/09\/blog-head_how2-install-php-on-ubuntu-vps-1-600x315.jpg",600,315,true],"medium_large":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2025\/09\/blog-head_how2-install-php-on-ubuntu-vps-1-768x403.jpg",768,403,true],"large":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2025\/09\/blog-head_how2-install-php-on-ubuntu-vps-1.jpg",800,420,false],"1536x1536":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2025\/09\/blog-head_how2-install-php-on-ubuntu-vps-1.jpg",800,420,false],"2048x2048":["https:\/\/contabo.com\/blog\/wp-content\/uploads\/2025\/09\/blog-head_how2-install-php-on-ubuntu-vps-1.jpg",800,420,false]},"uagb_author_info":{"display_name":"Tobias Mildenberger","author_link":"https:\/\/contabo.com\/blog\/author\/tobias\/"},"uagb_comment_info":0,"uagb_excerpt":"Installing PHP on Linux is a straightforward process, but doing it on a VPS gives you more control and flexibility. Whether you\u2019re setting up a new server for a project or migrating an existing site, a Linux PHP install ensures you can run frameworks and content management systems exactly the way you want. Using a&hellip;","authors":[{"term_id":1491,"user_id":50,"is_guest":0,"slug":"tobias","display_name":"Tobias Mildenberger","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/077178d5dce6c3d4c0c0396857a7e544bfdf8adf04145fff5160b33a22e28b1f?s=96&d=mm&r=g","0":null,"1":"","2":"","3":"","4":"","5":"","6":"","7":"","8":""}],"_links":{"self":[{"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/posts\/24988","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/users\/50"}],"replies":[{"embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/comments?post=24988"}],"version-history":[{"count":4,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/posts\/24988\/revisions"}],"predecessor-version":[{"id":25158,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/posts\/24988\/revisions\/25158"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/media\/25151"}],"wp:attachment":[{"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/media?parent=24988"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/categories?post=24988"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/tags?post=24988"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/contabo.com\/blog\/wp-json\/wp\/v2\/ppma_author?post=24988"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}