{"id":74979,"date":"2026-03-25T12:38:27","date_gmt":"2026-03-25T09:38:27","guid":{"rendered":"https:\/\/cloudspinx.com\/?p=74979"},"modified":"2026-03-25T12:38:28","modified_gmt":"2026-03-25T09:38:28","slug":"install-mediawiki-ubuntu-debian","status":"publish","type":"post","link":"https:\/\/computingforgeeks.com\/install-mediawiki-ubuntu-debian\/","title":{"rendered":"Install MediaWiki on Ubuntu 24.04 \/ Debian 13"},"content":{"rendered":"\n<p>MediaWiki powers Wikipedia and thousands of internal knowledge bases. It runs on PHP and MySQL\/MariaDB, which means a standard LAMP stack on Ubuntu gets you up and running in about 15 minutes.<\/p>\n\n\n\n<p>This guide walks through installing <a href=\"https:\/\/www.mediawiki.org\/wiki\/MediaWiki\" target=\"_blank\" rel=\"noreferrer noopener\">MediaWiki 1.43<\/a> on Ubuntu 24.04 with Apache, PHP 8.3, and MariaDB. The same steps apply to Debian 13 with minor package name differences. For a containerized alternative, see how to <a href=\"https:\/\/computingforgeeks.com\/how-to-install-docker-on-debian-12-bookworm\/\" target=\"_blank\" rel=\"noreferrer noopener\">run Docker on Debian<\/a> and deploy MediaWiki as a container instead.<\/p>\n\n\n\n<p><em>Current as of <strong>March 2026<\/strong>. Verified on Ubuntu 24.04.4 LTS with MediaWiki 1.43.1, PHP 8.3.6, MariaDB 10.11.14, Apache 2.4.58<\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Prerequisites<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ubuntu 24.04 LTS or Debian 13 (server install)<\/li>\n\n\n\n<li>Root or sudo access<\/li>\n\n\n\n<li>At least 512 MB RAM (1 GB recommended for production)<\/li>\n\n\n\n<li>A domain name for SSL (optional for local testing)<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Install Apache, PHP, and MariaDB<\/h2>\n\n\n\n<p>MediaWiki needs a web server, PHP with several extensions, and a database. Install everything in one shot:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update\nsudo apt install -y apache2 mariadb-server php php-mysql php-xml php-mbstring php-intl php-curl php-gd php-apcu libapache2-mod-php imagemagick<\/code><\/pre>\n\n\n\n<p>Verify the key versions:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>php -v | head -1\nmariadb --version\napache2 -v | head -1<\/code><\/pre>\n\n\n\n<p>On Ubuntu 24.04, you get:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>PHP 8.3.6 (cli) (built: Jan 27 2026 03:09:47) (NTS)\nmariadb  Ver 15.1 Distrib 10.11.14-MariaDB\nServer version: Apache\/2.4.58 (Ubuntu)<\/code><\/pre>\n\n\n\n<p>All three services should already be running. Confirm Apache and MariaDB are active:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>systemctl status apache2 --no-pager | head -3\nsystemctl status mariadb --no-pager | head -3<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Create the MediaWiki Database<\/h2>\n\n\n\n<p>Connect to MariaDB and create a database with a dedicated user:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mariadb<\/code><\/pre>\n\n\n\n<p>Run the following SQL statements to create the database, user, and grant permissions:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>CREATE DATABASE mediawiki;\nCREATE USER 'wikiuser'@'localhost' IDENTIFIED BY 'YourSecurePassword';\nGRANT ALL PRIVILEGES ON mediawiki.* TO 'wikiuser'@'localhost';\nFLUSH PRIVILEGES;\nEXIT;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Download and Extract MediaWiki<\/h2>\n\n\n\n<p>The commands below automatically detect the latest stable MediaWiki release from the official download page, so you always get the current version without hardcoding a version number:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>MW_VER=$(curl -sL https:\/\/www.mediawiki.org\/wiki\/Special:Export\/Template:MediaWiki_download 2>\/dev\/null | grep -oP 'mediawiki_version>[^<]+' | head -1 | sed 's\/mediawiki_version>\/\/')\nMW_MAJOR=$(echo $MW_VER | cut -d. -f1,2)\necho \"Detected MediaWiki version: $MW_VER (branch $MW_MAJOR)\"<\/code><\/pre>\n\n\n\n<p>If the detection succeeds, you should see output like:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Detected MediaWiki version: 1.43.1 (branch 1.43)<\/code><\/pre>\n\n\n\n<p>If the version comes back empty (the export page structure may change), set it manually. Check the <a href=\"https:\/\/www.mediawiki.org\/wiki\/Download\" target=\"_blank\" rel=\"noreferrer noopener\">MediaWiki download page<\/a> for the current stable release:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>MW_VER=\"1.43.1\"\nMW_MAJOR=$(echo $MW_VER | cut -d. -f1,2)<\/code><\/pre>\n\n\n\n<p>Now download and extract:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/tmp\nwget \"https:\/\/releases.wikimedia.org\/mediawiki\/${MW_MAJOR}\/mediawiki-${MW_VER}.tar.gz\"<\/code><\/pre>\n\n\n\n<p>Extract and move it to the web root:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>tar xf \"mediawiki-${MW_VER}.tar.gz\"\nsudo mv \"mediawiki-${MW_VER}\" \/var\/www\/html\/mediawiki\nsudo chown -R www-data:www-data \/var\/www\/html\/mediawiki<\/code><\/pre>\n\n\n\n<p>Quick sanity check that Apache serves the MediaWiki directory:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>curl -sI http:\/\/localhost\/mediawiki\/ | head -3<\/code><\/pre>\n\n\n\n<p>You should see HTTP 200 from Apache:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>HTTP\/1.1 200 OK\nDate: Wed, 25 Mar 2026 01:25:04 GMT\nServer: Apache\/2.4.58 (Ubuntu)<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Run the Web Installer<\/h2>\n\n\n\n<p>Open your browser and navigate to <code>http:\/\/your-server-ip\/mediawiki\/<\/code>. MediaWiki detects that no <code>LocalSettings.php<\/code> exists and launches the setup wizard.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/01-mediawiki-installer-language.png\" alt=\"MediaWiki 1.43.1 installer language selection with English selected\" class=\"wp-image-164444\" width=\"1024\" height=\"502\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/01-mediawiki-installer-language.png 1920w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/01-mediawiki-installer-language-300x147.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/01-mediawiki-installer-language-1024x502.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/01-mediawiki-installer-language-768x376.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/01-mediawiki-installer-language-1536x753.png 1536w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>The installer walks you through several configuration screens:<\/p>\n\n\n\n<p><strong>Language selection<\/strong>: Choose your wiki&#8217;s language and the installer language.<\/p>\n\n\n\n<p><strong>Environment check<\/strong>: MediaWiki verifies PHP version, required extensions, and directory permissions. All checks should pass with the packages installed above.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/02-mediawiki-environment-check.png\" alt=\"MediaWiki installer environment check showing all PHP requirements met on Ubuntu 24.04\" class=\"wp-image-164445\" width=\"1024\" height=\"502\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/02-mediawiki-environment-check.png 1920w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/02-mediawiki-environment-check-300x147.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/02-mediawiki-environment-check-1024x502.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/02-mediawiki-environment-check-768x376.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/02-mediawiki-environment-check-1536x753.png 1536w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p><strong>Database connection<\/strong>: Enter <code>mediawiki<\/code> as the database name, <code>wikiuser<\/code> as the user, and the password you set earlier.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/03-mediawiki-database-config.png\" alt=\"MediaWiki installer database connection settings with MariaDB selected\" class=\"wp-image-164446\" width=\"1024\" height=\"502\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/03-mediawiki-database-config.png 1920w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/03-mediawiki-database-config-300x147.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/03-mediawiki-database-config-1024x502.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/03-mediawiki-database-config-768x376.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/03-mediawiki-database-config-1536x753.png 1536w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p><strong>Wiki name and admin account<\/strong>: Set the wiki name and create the administrator account.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/06-mediawiki-wiki-name.png\" alt=\"MediaWiki installer name of wiki and project namespace configuration\" class=\"wp-image-164447\" width=\"1024\" height=\"502\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/06-mediawiki-wiki-name.png 1920w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/06-mediawiki-wiki-name-300x147.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/06-mediawiki-wiki-name-1024x502.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/06-mediawiki-wiki-name-768x376.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/06-mediawiki-wiki-name-1536x753.png 1536w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Fill in the administrator username, password, and email address. This account will have full administrative privileges on the wiki.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/07-mediawiki-admin-filled.png\" alt=\"MediaWiki installer administrator account setup with username and password filled in\" class=\"wp-image-164448\" width=\"1024\" height=\"502\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/07-mediawiki-admin-filled.png 1920w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/07-mediawiki-admin-filled-300x147.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/07-mediawiki-admin-filled-1024x502.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/07-mediawiki-admin-filled-768x376.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/07-mediawiki-admin-filled-1536x753.png 1536w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p><strong>Optional settings<\/strong>: Email, file uploads, skins, and extensions. The defaults work fine for initial setup.<\/p>\n\n\n\n<p>At the end, the installer generates a <code>LocalSettings.php<\/code> file. Download it and place it in the MediaWiki root.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/09-mediawiki-complete.png\" alt=\"MediaWiki installer showing successful installation complete message\" class=\"wp-image-164450\" width=\"1024\" height=\"502\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/09-mediawiki-complete.png 1920w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/09-mediawiki-complete-300x147.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/09-mediawiki-complete-1024x502.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/09-mediawiki-complete-768x376.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2026\/03\/09-mediawiki-complete-1536x753.png 1536w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Move the downloaded file into place:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo mv ~\/Downloads\/LocalSettings.php \/var\/www\/html\/mediawiki\/\nsudo chown www-data:www-data \/var\/www\/html\/mediawiki\/LocalSettings.php<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Configure Apache Virtual Host<\/h2>\n\n\n\n<p>For production use, create a dedicated virtual host instead of relying on the default. Create the config file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo vi \/etc\/apache2\/sites-available\/mediawiki.conf<\/code><\/pre>\n\n\n\n<p>Add the following configuration:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;VirtualHost *:80&gt;\n    ServerName wiki.example.com\n    DocumentRoot \/var\/www\/html\/mediawiki\n\n    &lt;Directory \/var\/www\/html\/mediawiki&gt;\n        AllowOverride All\n        Require all granted\n    &lt;\/Directory&gt;\n\n    ErrorLog ${APACHE_LOG_DIR}\/mediawiki-error.log\n    CustomLog ${APACHE_LOG_DIR}\/mediawiki-access.log combined\n&lt;\/VirtualHost&gt;<\/code><\/pre>\n\n\n\n<p>Enable the site and required Apache modules:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo a2ensite mediawiki.conf\nsudo a2enmod rewrite\nsudo systemctl reload apache2<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Enable Short URLs<\/h2>\n\n\n\n<p>By default, MediaWiki URLs look like <code>\/mediawiki\/index.php?title=Main_Page<\/code>. Short URLs give you cleaner paths like <code>\/wiki\/Main_Page<\/code>.<\/p>\n\n\n\n<p>Add these lines to <code>LocalSettings.php<\/code>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$wgArticlePath = \"\/wiki\/$1\";\n$wgUsePathInfo = true;<\/code><\/pre>\n\n\n\n<p>Then add a rewrite rule to the Apache virtual host (inside the <code>&lt;Directory&gt;<\/code> block) or create a <code>.htaccess<\/code> file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>RewriteEngine On\nRewriteRule ^wiki\/(.*)$ \/mediawiki\/index.php?title=$1 [PT,L,QSA]<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">PHP Settings for MediaWiki<\/h2>\n\n\n\n<p>The defaults work for small wikis, but production instances benefit from a few tweaks. Edit the PHP configuration:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo vi \/etc\/php\/8.3\/apache2\/php.ini<\/code><\/pre>\n\n\n\n<p>Adjust these values:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>upload_max_filesize = 20M\npost_max_size = 25M\nmemory_limit = 256M\nmax_execution_time = 60<\/code><\/pre>\n\n\n\n<p>Restart Apache to apply:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart apache2<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Enable File Uploads<\/h2>\n\n\n\n<p>File uploads are disabled by default. Enable them in <code>LocalSettings.php<\/code>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$wgEnableUploads = true;<\/code><\/pre>\n\n\n\n<p>The images directory must be writable by the web server:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo chown -R www-data:www-data \/var\/www\/html\/mediawiki\/images<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Useful MediaWiki Maintenance Commands<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Command<\/th><th>What it does<\/th><\/tr><\/thead><tbody><tr><td><code>php maintenance\/run.php update<\/code><\/td><td>Run database schema updates after upgrading<\/td><\/tr><tr><td><code>php maintenance\/run.php createAndPromote --sysop Admin password<\/code><\/td><td>Create an admin user from CLI<\/td><\/tr><tr><td><code>php maintenance\/run.php rebuildall<\/code><\/td><td>Rebuild search index and link tables<\/td><\/tr><tr><td><code>php maintenance\/run.php showJobs<\/code><\/td><td>Show pending background jobs<\/td><\/tr><tr><td><code>php maintenance\/run.php runJobs<\/code><\/td><td>Process all pending background jobs<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>All maintenance commands run from the MediaWiki root directory as the <code>www-data<\/code> user:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/var\/www\/html\/mediawiki\nsudo -u www-data php maintenance\/run.php update<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Secure the Installation<\/h2>\n\n\n\n<p>A few security steps for production wikis:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Set up SSL<\/strong> &#8211; Use Let&#8217;s Encrypt with certbot. Every public wiki should run over HTTPS<\/li>\n\n\n\n<li><strong>Restrict account creation<\/strong> &#8211; Add <code>$wgGroupPermissions['*']['createaccount'] = false;<\/code> to <code>LocalSettings.php<\/code> if you don&#8217;t want open registration<\/li>\n\n\n\n<li><strong>Enable email confirmation<\/strong> &#8211; Set <code>$wgEmailConfirmToEdit = true;<\/code> to require verified emails before editing<\/li>\n\n\n\n<li><strong>Protect the uploads directory<\/strong> &#8211; Prevent PHP execution in the images folder with an <code>.htaccess<\/code> rule: <code>php_flag engine off<\/code><\/li>\n\n\n\n<li><strong>Regular backups<\/strong> &#8211; Back up both the database (<code>mariadb-dump mediawiki<\/code>) and the <code>images\/<\/code> directory. Consider automating with <a href=\"https:\/\/computingforgeeks.com\/borgbackup-borgmatic-linux\/\" target=\"_blank\" rel=\"noreferrer noopener\">BorgBackup and Borgmatic<\/a><\/li>\n<\/ul>\n\n\n\n<p>For Apache tuning and virtual host management across multiple sites, the guide on <a href=\"https:\/\/computingforgeeks.com\/hosting-php-applications-on-linux-with-apache-nginx\/\" target=\"_blank\" rel=\"noreferrer noopener\">hosting PHP applications with Apache and Nginx<\/a> covers the underlying configuration in more depth.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>MediaWiki powers Wikipedia and thousands of internal knowledge bases. It runs on PHP and MySQL\/MariaDB, which means a standard LAMP stack on Ubuntu gets you up and running in about 15 minutes. This guide walks through installing MediaWiki 1.43 on Ubuntu 24.04 with Apache, PHP 8.3, and MariaDB. The same steps apply to Debian 13 &#8230; <a title=\"Install MediaWiki on Ubuntu 24.04 \/ Debian 13\" class=\"read-more\" href=\"https:\/\/computingforgeeks.com\/install-mediawiki-ubuntu-debian\/\" aria-label=\"Read more about Install MediaWiki on Ubuntu 24.04 \/ Debian 13\">Read more<\/a><\/p>\n","protected":false},"author":3,"featured_media":161614,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[26,299,50,81,349],"tags":[39545],"cfg_series":[],"class_list":["post-74979","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-debian","category-how-to","category-linux-tutorials","category-ubuntu","category-web-hosting","tag-mediawiki"],"_links":{"self":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/posts\/74979","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/comments?post=74979"}],"version-history":[{"count":2,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/posts\/74979\/revisions"}],"predecessor-version":[{"id":164457,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/posts\/74979\/revisions\/164457"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/media\/161614"}],"wp:attachment":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/media?parent=74979"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/categories?post=74979"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/tags?post=74979"},{"taxonomy":"cfg_series","embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/cfg_series?post=74979"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}