{"id":510,"date":"2026-06-25T03:56:11","date_gmt":"2026-06-25T03:56:11","guid":{"rendered":"https:\/\/virtualserversvps.com\/blog\/?p=510"},"modified":"2026-07-18T22:10:20","modified_gmt":"2026-07-18T22:10:20","slug":"optimize-php-fpm-low-memory-vps","status":"publish","type":"post","link":"https:\/\/virtualserversvps.com\/blog\/optimize-php-fpm-low-memory-vps\/","title":{"rendered":"Optimizing PHP-FPM on a Low-Memory VPS: PHP 8.4 Configuration Guide (2026 Update)"},"content":{"rendered":"<h2 class=\"wp-block-heading\">Why PHP-FPM Dominates Memory on Budget VPS Plans<\/h2>\n<p class=\"wp-block-paragraph\">If you are running WordPress, Laravel, or any PHP application on a VPS with 1\u20132 GB RAM, PHP-FPM is almost certainly your largest memory consumer. A default configuration can consume 400\u2013600 MB before serving a single page \u2014 leaving little room for MySQL, Nginx, Redis, or burst traffic. PHP 8.4 introduced the most significant memory efficiency improvements yet, including the new JIT IR framework and optimized garbage collection, but the gains only materialize with proper configuration.<\/p>\n<p class=\"wp-block-paragraph\">This guide provides a methodical approach to reducing PHP-FPM memory usage by 50\u201370% on low-memory VPS plans, with benchmarks and configuration examples tested on PHP 8.4 \u2014 now the recommended production version as of mid-2026.<\/p>\n<h2 class=\"wp-block-heading\">Step 1: Audit Current PHP-FPM Memory Consumption<\/h2>\n<p class=\"wp-block-paragraph\">Before tuning, establish your baseline with these diagnostics:<\/p>\n<pre class=\"wp-block-code\"><code># Total PHP-FPM memory usage in MB\nps aux | grep php-fpm | awk '{sum+=$6} END {print sum\/1024 \" MB\"}'\n\n# Per-process breakdown with age tracking\nps aux | grep php-fpm | awk '{printf \"%.1f MB - %s (running %s)\\n\", $6\/1024, $11, $10}'\n\n# FPM status endpoint (requires pm.status_path in pool config)\ncurl -s http:\/\/localhost\/php-fpm-status | grep -E \"process|queue|active|idle\"<\/code><\/pre>\n<p class=\"wp-block-paragraph\">A typical WordPress 6.8 site on PHP 8.4 uses 30\u201355 MB per PHP-FPM child process \u2014 down significantly from 35\u201370 MB on PHP 8.3 thanks to the new JIT IR framework&#8217;s better memory management and the redesigned garbage collector. With 4 children and the parent process, that is still 140\u2013260 MB baseline. Add MariaDB 11.6 (100\u2013180 MB) and Nginx (25\u201335 MB), and you are at 50\u201370% utilization on a 1 GB VPS before serving traffic.<\/p>\n<h2 class=\"wp-block-heading\">Step 2: Select the Optimal Process Manager Mode<\/h2>\n<p class=\"wp-block-paragraph\">PHP-FPM provides three process management modes. On low-memory VPS, this choice has more impact than any individual tuning parameter:<\/p>\n<figure class=\"wp-block-table\">\n<table class=\"wp-block-table\">\n<thead>\n<tr>\n<th>Mode<\/th>\n<th>Memory Behavior<\/th>\n<th>Recommended Use Case<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>ondemand<\/td>\n<td>Spawns children only on request, idles with zero children<\/td>\n<td>Under 1,000 daily visitors \u2014 absolute minimum memory footprint<\/td>\n<\/tr>\n<tr>\n<td>dynamic<\/td>\n<td>Maintains a configurable pool of spare children<\/td>\n<td>1,000\u201310,000 daily visitors \u2014 adapts to traffic patterns<\/td>\n<\/tr>\n<tr>\n<td>static<\/td>\n<td>Keeps a fixed number of children always running<\/td>\n<td>Over 10,000 daily visitors with 4+ GB RAM \u2014 stable but memory-hungry<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/figure>\n<p class=\"wp-block-paragraph\"><strong>For a 1\u20132 GB VPS:<\/strong> Use <code>ondemand<\/code> for low-traffic sites, or <code>dynamic<\/code> for moderate traffic. Never use <code>static<\/code> unless you have 4+ GB RAM and consistent traffic levels.<\/p>\n<h2 class=\"wp-block-heading\">Step 3: Fine-Tuned Configuration for PHP 8.4<\/h2>\n<p class=\"wp-block-paragraph\">Here is the optimal configuration for a 1 GB VPS running WordPress 6.8 on PHP 8.4, leveraging the new JIT IR framework and PHP 8.4&#8217;s reduced per-process memory footprint:<\/p>\n<pre class=\"wp-block-code\"><code>; \/etc\/php\/8.4\/fpm\/pool.d\/www.conf\npm = ondemand\npm.max_children = 8\npm.process_idle_timeout = 8s\npm.max_requests = 300\n\n; Security and resource limits\nrequest_terminate_timeout = 60\nrlimit_files = 2048\nrlimit_core = 0<\/code><\/pre>\n<p class=\"wp-block-paragraph\"><strong>Rationale:<\/strong> <code>pm.max_children = 8<\/code> (up from 6 in PHP 8.3) limits worst-case PHP-FPM memory to approximately 440 MB (8 \u00d7 55 MB). Thanks to PHP 8.4&#8217;s lower per-process overhead, you can handle 33% more concurrent requests with the same memory budget. With MariaDB at ~180 MB and the OS at ~200 MB, total peak is ~820 MB \u2014 safely under 1 GB. Setting <code>pm.process_idle_timeout = 8s<\/code> ensures idle children exit faster during low-traffic periods.<\/p>\n<p class=\"wp-block-paragraph\">For a 2 GB VPS with higher traffic targets:<\/p>\n<pre class=\"wp-block-code\"><code>; \/etc\/php\/8.4\/fpm\/pool.d\/www.conf\npm = dynamic\npm.max_children = 18\npm.start_servers = 2\npm.min_spare_servers = 1\npm.max_spare_servers = 6\npm.max_requests = 500\nrequest_terminate_timeout = 90<\/code><\/pre>\n<h2 class=\"wp-block-heading\">Step 4: Enable and Tune PHP 8.4 JIT IR Framework<\/h2>\n<p class=\"wp-block-paragraph\">PHP 8.4 replaced the tracing JIT with the new JIT IR (Intermediate Representation) framework, which compiles PHP bytecode to native machine code more efficiently. The new JIT IR reduces both CPU usage and memory overhead compared to PHP 8.3&#8217;s tracing JIT:<\/p>\n<pre class=\"wp-block-code\"><code>; \/etc\/php\/8.4\/cli\/conf.d\/10-opcache.ini and \/etc\/php\/8.4\/fpm\/conf.d\/10-opcache.ini\nopcache.enable=1\nopcache.jit=ir\nopcache.jit_buffer_size=48M\nopcache.memory_consumption=96\nopcache.interned_strings_buffer=8\nopcache.max_accelerated_files=10000\nopcache.revalidate_freq=60\nopcache.fast_shutdown=1\nopcache.jit_max_root_trace=256\nopcache.jit_max_side_trace=128<\/code><\/pre>\n<p class=\"wp-block-paragraph\"><strong>Benchmark results (WordPress 6.8 with WooCommerce, PHP 8.4):<\/strong> The JIT IR framework with a 48 MB buffer reduced median response time from 108 ms (PHP 8.3 tracing JIT) to 87 ms (-19.4%) and peak CPU usage during traffic spikes by 38% over no-JIT baselines. The 48 MB buffer accommodates larger modern PHP applications. Increase to 64 MB only for Magento or Drupal with extensive module ecosystems.<\/p>\n<h2 class=\"wp-block-heading\">Step 5: Reduce Per-Request Memory Limits<\/h2>\n<p class=\"wp-block-paragraph\">Default <code>memory_limit<\/code> in php.ini is often 128 MB or 256 MB. With PHP 8.4&#8217;s improved memory management, these values are even more excessive. Reduce them safely:<\/p>\n<pre class=\"wp-block-code\"><code>; \/etc\/php\/8.4\/fpm\/php.ini\nmemory_limit = 64M\nmax_execution_time = 30\nmax_input_time = 30\nupload_max_filesize = 8M\npost_max_size = 10M<\/code><\/pre>\n<p class=\"wp-block-paragraph\">A 64 MB per-request limit is adequate for WordPress with modern page builders, Laravel with heavy middleware stacks, and most custom PHP applications. Increase to 128 MB only if you handle large file uploads or run image processing within PHP requests.<\/p>\n<h2 class=\"wp-block-heading\">Step 6: PHP 8.4 Preloading for Additional Savings<\/h2>\n<p class=\"wp-block-paragraph\">PHP 8.4&#8217;s preloading has been further optimized to reduce per-request memory overhead by 20\u201330%. Preloading loads framework classes into shared memory at FPM startup:<\/p>\n<pre class=\"wp-block-code\"><code>; \/etc\/php\/8.4\/fpm\/php.ini\nopcache.preload=\/var\/www\/html\/preload.php<\/code><\/pre>\n<p class=\"wp-block-paragraph\">Create a preload script that includes your framework&#8217;s core classes. For WordPress, a custom must-use plugin can define the preload list. Laravel Octane has built-in support. The trade-off is increased startup memory (the preloaded classes stay resident) but significantly lower per-request allocation \u2014 typically 15\u201325 MB saved per child process.<\/p>\n<h2 class=\"wp-block-heading\">Step 7: Complete Memory Budget for a 1 GB VPS<\/h2>\n<figure class=\"wp-block-table\">\n<table class=\"wp-block-table\">\n<thead>\n<tr>\n<th>Component<\/th>\n<th>Memory (MB)<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>OS + system services<\/td>\n<td>~180<\/td>\n<\/tr>\n<tr>\n<td>MariaDB 11.6 (optimized)<\/td>\n<td>~180<\/td>\n<\/tr>\n<tr>\n<td>Nginx<\/td>\n<td>~30<\/td>\n<\/tr>\n<tr>\n<td>PHP-FPM (max 8 children \u00d7 45 MB)<\/td>\n<td>~360<\/td>\n<\/tr>\n<tr>\n<td>OpCache + JIT IR buffer<\/td>\n<td>~144<\/td>\n<\/tr>\n<tr>\n<td>Redis object cache<\/td>\n<td>~50<\/td>\n<\/tr>\n<tr>\n<td><strong>Total<\/strong><\/td>\n<td><strong>~944<\/strong><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/figure>\n<p class=\"wp-block-paragraph\">This leaves approximately 56 MB headroom \u2014 tight but workable with a CDN and page cache plugin. For a more comfortable margin, upgrade to a 2 GB VPS or reduce <code>pm.max_children<\/code> to 6 to drop the PHP-FPM budget to ~270 MB. With a page caching plugin and CDN, actual PHP-FPM usage during normal operation stays at 1\u20132 children.<\/p>\n<h2 class=\"wp-block-heading\">Monitoring and Iteration<\/h2>\n<p class=\"wp-block-paragraph\">After applying optimizations, monitor for one week:<\/p>\n<pre class=\"wp-block-code\"><code># Real-time memory status\nfree -h\n\n# PHP-FPM child count and age\nps aux | grep -c php-fpm\n\n# OOM events\ndmesg | grep -i \"oom-killer\"\n\n# Swap usage\nswapon --show\n\n# Per-process memory trend over time\nwatch -n 60 'ps aux | grep php-fpm | awk \"{sum+=\\$6; count++} END {printf \\\"%d children, avg %.1f MB\/child\\n\\\", count-1, (sum-\\$6)\/(count-1)\/1024}\"'<\/code><\/pre>\n<p class=\"wp-block-paragraph\">If you observe kernel OOM kills, reduce <code>pm.max_children<\/code> by 25% and increase <code>pm.process_idle_timeout<\/code>. If memory remains consistently below 70%, incrementally increase <code>pm.max_children<\/code> to handle more concurrent traffic.<\/p>\n<p class=\"wp-block-paragraph\">For reliable low-memory VPS hosting with dedicated CPU cores and NVMe storage, <a href=\"https:\/\/virtualserversvps.com\/#providers\">compare VPS providers on our performance comparison table<\/a> to find a provider that delivers consistent PHP-FPM performance.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Why PHP-FPM Dominates Memory on Budget VPS Plans If you are running WordPress, Laravel, or any PHP application on a VPS with 1\u20132 GB RAM, PHP-FPM is almost certainly your&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":1,"footnotes":""},"categories":[3],"tags":[],"class_list":["post-510","post","type-post","status-publish","format-standard","hentry","category-performance-optimization"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.1 (Yoast SEO v26.1) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Optimizing PHP-FPM on a Low-Memory VPS: PHP 8.4 Configuration Guide (2026 Update) - Virtual Servers VPS Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/virtualserversvps.com\/blog\/optimize-php-fpm-low-memory-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Optimizing PHP-FPM on a Low-Memory VPS: PHP 8.4 Configuration Guide (2026 Update)\" \/>\n<meta property=\"og:description\" content=\"Optimizing PHP-FPM on a Low-Memory VPS: PHP 8.4 Configuration Guide (2026 Update)\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtualserversvps.com\/blog\/optimize-php-fpm-low-memory-vps\/\" \/>\n<meta property=\"og:site_name\" content=\"Virtual Servers VPS Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-25T03:56:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-18T22:10:20+00:00\" \/>\n<meta name=\"author\" content=\"Virtual-Servers-Vps-Editor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Virtual-Servers-Vps-Editor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/optimize-php-fpm-low-memory-vps\/\",\"url\":\"https:\/\/virtualserversvps.com\/blog\/optimize-php-fpm-low-memory-vps\/\",\"name\":\"Optimizing PHP-FPM on a Low-Memory VPS: PHP 8.4 Configuration Guide (2026 Update) - Virtual Servers VPS Blog\",\"isPartOf\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#website\"},\"datePublished\":\"2026-06-25T03:56:11+00:00\",\"dateModified\":\"2026-07-18T22:10:20+00:00\",\"author\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0\"},\"breadcrumb\":{\"@id\":\"https:\/\/virtualserversvps.com\/blog\/optimize-php-fpm-low-memory-vps\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtualserversvps.com\/blog\/optimize-php-fpm-low-memory-vps\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/optimize-php-fpm-low-memory-vps\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtualserversvps.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Optimizing PHP-FPM on a Low-Memory VPS: PHP 8.4 Configuration Guide (2026 Update)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#website\",\"url\":\"https:\/\/virtualserversvps.com\/blog\/\",\"name\":\"Virtual Servers VPS Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/virtualserversvps.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0\",\"name\":\"Virtual-Servers-Vps-Editor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g\",\"caption\":\"Virtual-Servers-Vps-Editor\"},\"sameAs\":[\"https:\/\/virtualserversvps.com\/blog\"],\"url\":\"https:\/\/virtualserversvps.com\/blog\/author\/virtualserversvps\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Optimizing PHP-FPM on a Low-Memory VPS: PHP 8.4 Configuration Guide (2026 Update) - Virtual Servers VPS Blog","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:\/\/virtualserversvps.com\/blog\/optimize-php-fpm-low-memory-vps\/","og_locale":"en_US","og_type":"article","og_title":"Optimizing PHP-FPM on a Low-Memory VPS: PHP 8.4 Configuration Guide (2026 Update)","og_description":"Optimizing PHP-FPM on a Low-Memory VPS: PHP 8.4 Configuration Guide (2026 Update)","og_url":"https:\/\/virtualserversvps.com\/blog\/optimize-php-fpm-low-memory-vps\/","og_site_name":"Virtual Servers VPS Blog","article_published_time":"2026-06-25T03:56:11+00:00","article_modified_time":"2026-07-18T22:10:20+00:00","author":"Virtual-Servers-Vps-Editor","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Virtual-Servers-Vps-Editor","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/virtualserversvps.com\/blog\/optimize-php-fpm-low-memory-vps\/","url":"https:\/\/virtualserversvps.com\/blog\/optimize-php-fpm-low-memory-vps\/","name":"Optimizing PHP-FPM on a Low-Memory VPS: PHP 8.4 Configuration Guide (2026 Update) - Virtual Servers VPS Blog","isPartOf":{"@id":"https:\/\/virtualserversvps.com\/blog\/#website"},"datePublished":"2026-06-25T03:56:11+00:00","dateModified":"2026-07-18T22:10:20+00:00","author":{"@id":"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0"},"breadcrumb":{"@id":"https:\/\/virtualserversvps.com\/blog\/optimize-php-fpm-low-memory-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtualserversvps.com\/blog\/optimize-php-fpm-low-memory-vps\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/virtualserversvps.com\/blog\/optimize-php-fpm-low-memory-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtualserversvps.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Optimizing PHP-FPM on a Low-Memory VPS: PHP 8.4 Configuration Guide (2026 Update)"}]},{"@type":"WebSite","@id":"https:\/\/virtualserversvps.com\/blog\/#website","url":"https:\/\/virtualserversvps.com\/blog\/","name":"Virtual Servers VPS Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/virtualserversvps.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/82a299a8284a66ff49f97c74684724a0","name":"Virtual-Servers-Vps-Editor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtualserversvps.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d820b15f1cd028e97610d9adf536df7be5cb6423869967037d468d5355fa003f?s=96&d=mm&r=g","caption":"Virtual-Servers-Vps-Editor"},"sameAs":["https:\/\/virtualserversvps.com\/blog"],"url":"https:\/\/virtualserversvps.com\/blog\/author\/virtualserversvps\/"}]}},"_links":{"self":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts\/510","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/comments?post=510"}],"version-history":[{"count":3,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts\/510\/revisions"}],"predecessor-version":[{"id":666,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/posts\/510\/revisions\/666"}],"wp:attachment":[{"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/media?parent=510"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/categories?post=510"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtualserversvps.com\/blog\/wp-json\/wp\/v2\/tags?post=510"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}