{"id":12510,"date":"2024-06-03T13:24:16","date_gmt":"2024-06-03T07:54:16","guid":{"rendered":"https:\/\/www.skynats.com\/?p=12510"},"modified":"2025-10-28T11:22:48","modified_gmt":"2025-10-28T05:52:48","slug":"manage-php-ini-directives-php-fpm-cpanel","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/manage-php-ini-directives-php-fpm-cpanel\/","title":{"rendered":"How to Manage PHP.ini Directives with PHP FPM on a cPanel Server"},"content":{"rendered":"\n<p><a href=\"https:\/\/www.skynats.com\/server-management\/\">Manage PHP.ini Directives with PHP FPM<\/a> on cpanel can be useful for altering PHP configurations to specific application requirements. When using PHP-FPM alongside cPanel, the process becomes more streamlined and efficient.PHP-FPM (FastCGI Process Manager) significantly elevates PHP performance and provides more granular control over PHP settings. This blog post will take you through the steps for managing php.ini directives on a cPanel server using PHP-FPM.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-normal-font-size\" id=\"h-prerequisites\">Prerequisites<\/h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li>A cPanel account with root access.<\/li>\n\n\n\n<li>PHP-FPM enabled on your server.<\/li>\n\n\n\n<li>Basic knowledge of how to use the cPanel interface<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading has-normal-font-size\" id=\"h-1-enabling-php-fpm-in-cpanel\"><strong>1. Enabling PHP-FPM in cPanel<\/strong><\/h2>\n\n\n\n<p>Before managing php.ini directives, ensure PHP-FPM is enabled for your domain:<\/p>\n\n\n\n<p>i. For this, First Log in to WHM&nbsp;<\/p>\n\n\n\n<p>ii. Then, Navigate to MultiPHP Manager and select User Domain settings.<\/p>\n\n\n\n<p>iii. In the domain section, Select your domain and check whether &#8220;PHP-FPM&#8221; is enabled for the domain, if not then enable it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-normal-font-size\" id=\"h-2-php-ini-file\"><strong>2. php.ini File<\/strong><\/h2>\n\n\n\n<p>It is always important to understand the current PHP configuration. You can find the existing php.ini file by creating a PHP info page.<\/p>\n\n\n\n<p>Now, Create a file named phpinfo.php in your web root directory. Here I am using the root directory as: \/home\/testdomain.com\/public_html\/<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#cd \/home\/testdomain.com\/public_html\/\n# vim phpinfo.php<\/code><\/pre>\n\n\n\n<p>Add the following content to the file:<\/p>\n\n\n\n<p><strong>&lt;?php<\/strong><\/p>\n\n\n\n<p><strong>phpinfo();<\/strong><\/p>\n\n\n\n<p><strong>?&gt;<\/strong><\/p>\n\n\n\n<p>After changing the necessary file permissions, Access this file via your web browser (e.g., http:\/\/testdomain.com\/phpinfo.php).<\/p>\n\n\n\n<p>In the page, Verify that <strong>PHP_FPM<\/strong> is active or not.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-normal-font-size\" id=\"h-3-review-and-modify-php-ini-directives\"><strong>3. Review and Modify php.ini Directives<\/strong><\/h2>\n\n\n\n<p>You can review the domain\u2019s php.ini directives in cPanel\u2019s MultiPHP INI Editor interface (cPanel \u00bb Home \u00bb Software \u00bb MultiPHP INI Editor).<\/p>\n\n\n\n<p>In WHM, you can review this in (WHM \u00bb Home \u00bb Software \u00bb MultiPHP INI Editor). You can find the system set default php.ini directive there<a href=\"https:\/\/cpanel.net\/\">.<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading has-normal-font-size\" id=\"h-for-global-modifications\"><strong>For Global Modifications:<\/strong><\/h2>\n\n\n\n<p>First, SSH into your server.<\/p>\n\n\n\n<p>And then look for \/var\/cpanel\/ApachePHPFPM\/system_pool_defaults.yaml. If it does not already exist, create it.<\/p>\n\n\n\n<p>To modify the.yaml file, use the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#vim \/var\/cpanel\/ApachePHPFPM\/system_pool_defaults.yaml<\/code><\/pre>\n\n\n\n<p>Add the desired PHP-FPM pools and directives. for example you can set the memory limit of 120 MB by adding the following:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>php_admin_value_memory_limit: { name: 'php_admin_value&#91;memory_limit]', value: 120M }<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-normal-font-size\" id=\"h-for-modifying-specific-php-ini-directives-for-a-domain-nbsp\"><strong>For Modifying specific php.ini directives for a domain,&nbsp;<\/strong><\/h2>\n\n\n\n<p>Create the file \/var\/cpanel\/userdata\/username\/testdomain.com.php-fpm.yaml, then edit it with a text editor to add the directives you want to modify.<\/p>\n\n\n\n<p>for example, to disable the passthru and system directives, use:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#vim \/var\/cpanel\/userdata\/username\/testdomain.com.php-fpm.yaml<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>_is_present: 1\nphp_admin_value_disable_functions: { name: 'php_admin_value&#91;disable_functions]', value: passthru,system }<\/code><\/pre>\n\n\n\n<p>To enable all the directives, using the following:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>_is_present: 1\nphp_admin_value_disable_functions: { name: 'php_admin_value&#91;disable_functions]', value: none }<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-normal-font-size\" id=\"h-4-regenerate-the-configuration-and-restart-the-services\"><strong>4. Regenerate the configuration and restart the services<\/strong><\/h2>\n\n\n\n<p>After the modifications has been made, Regenerate the php-fpm configuration:&nbsp;<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#\/usr\/local\/cpanel\/scripts\/php_fpm_config --rebuild<\/code><\/pre>\n\n\n\n<p>Restart the apache and php-fpm services for the changes to take effect:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#\/usr\/local\/cpanel\/scripts\/restartsrv_apache_php_fpm\n#\/usr\/local\/cpanel\/scripts\/restartsrv_httpd<\/code><\/pre>\n\n\n\n<p>By following these steps, you can effectively manage your PHP settings, ensuring optimised performance.<\/p>\n\n\n\n<p>If you have any questions or need personalized assistance with &#8220;How to Manage PHP.ini Directives with PHP FPM on a cPanel Server&#8221; , don\u2019t hesitate to reach out&nbsp;<a href=\"https:\/\/www.skynats.com\/blog\/\">Skynats<\/a>. <\/p>\n","protected":false},"excerpt":{"rendered":"<p>Manage PHP.ini Directives with PHP FPM on cpanel can be useful for altering PHP configurations to specific application requirements. When using PHP-FPM alongside cPanel, the process becomes more streamlined and efficient.PHP-FPM (FastCGI Process Manager) significantly elevates PHP performance and provides more granular control over PHP settings. This blog post will take you through the steps [&hellip;]<\/p>\n","protected":false},"author":13,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5,764,416,224],"tags":[870,869],"class_list":["post-12510","post","type-post","status-publish","format-standard","hentry","category-blog","category-cpanel","category-cpanel-server-management","category-php-8-0","tag-cpanel-server","tag-php-fpm"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Manage PHP.ini Directives with PHP FPM on cPanel Easily<\/title>\n<meta name=\"description\" content=\"Learn how to manage PHP.ini directives with PHP FPM on a cPanel server. Optimize your PHP settings for better performance and control\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.skynats.com\/blog\/manage-php-ini-directives-php-fpm-cpanel\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Manage PHP.ini Directives with PHP FPM on a cPanel Server\" \/>\n<meta property=\"og:description\" content=\"Learn how to manage PHP.ini directives with PHP FPM on a cPanel server. Optimize your PHP settings for better performance and control\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/manage-php-ini-directives-php-fpm-cpanel\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2024-06-03T07:54:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-28T05:52:48+00:00\" \/>\n<meta name=\"author\" content=\"Sourav AJ\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sourav AJ\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/manage-php-ini-directives-php-fpm-cpanel\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/manage-php-ini-directives-php-fpm-cpanel\\\/\"},\"author\":{\"name\":\"Sourav AJ\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/255d12fc66a62db365022ecbb5846276\"},\"headline\":\"How to Manage PHP.ini Directives with PHP FPM on a cPanel Server\",\"datePublished\":\"2024-06-03T07:54:16+00:00\",\"dateModified\":\"2025-10-28T05:52:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/manage-php-ini-directives-php-fpm-cpanel\\\/\"},\"wordCount\":492,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"keywords\":[\"cPanel Server\",\"PHP FPM\"],\"articleSection\":[\"Blog\",\"cPanel\",\"cpanel server management\",\"PHP 8.0\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/manage-php-ini-directives-php-fpm-cpanel\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/manage-php-ini-directives-php-fpm-cpanel\\\/\",\"name\":\"Manage PHP.ini Directives with PHP FPM on cPanel Easily\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"datePublished\":\"2024-06-03T07:54:16+00:00\",\"dateModified\":\"2025-10-28T05:52:48+00:00\",\"description\":\"Learn how to manage PHP.ini directives with PHP FPM on a cPanel server. Optimize your PHP settings for better performance and control\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/manage-php-ini-directives-php-fpm-cpanel\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/manage-php-ini-directives-php-fpm-cpanel\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/manage-php-ini-directives-php-fpm-cpanel\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Manage PHP.ini Directives with PHP FPM on a cPanel Server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/255d12fc66a62db365022ecbb5846276\",\"name\":\"Sourav AJ\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"caption\":\"Sourav AJ\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Manage PHP.ini Directives with PHP FPM on cPanel Easily","description":"Learn how to manage PHP.ini directives with PHP FPM on a cPanel server. Optimize your PHP settings for better performance and control","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:\/\/www.skynats.com\/blog\/manage-php-ini-directives-php-fpm-cpanel\/","og_locale":"en_US","og_type":"article","og_title":"How to Manage PHP.ini Directives with PHP FPM on a cPanel Server","og_description":"Learn how to manage PHP.ini directives with PHP FPM on a cPanel server. Optimize your PHP settings for better performance and control","og_url":"https:\/\/www.skynats.com\/blog\/manage-php-ini-directives-php-fpm-cpanel\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2024-06-03T07:54:16+00:00","article_modified_time":"2025-10-28T05:52:48+00:00","author":"Sourav AJ","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Sourav AJ","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/manage-php-ini-directives-php-fpm-cpanel\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/manage-php-ini-directives-php-fpm-cpanel\/"},"author":{"name":"Sourav AJ","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/255d12fc66a62db365022ecbb5846276"},"headline":"How to Manage PHP.ini Directives with PHP FPM on a cPanel Server","datePublished":"2024-06-03T07:54:16+00:00","dateModified":"2025-10-28T05:52:48+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/manage-php-ini-directives-php-fpm-cpanel\/"},"wordCount":492,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"keywords":["cPanel Server","PHP FPM"],"articleSection":["Blog","cPanel","cpanel server management","PHP 8.0"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/manage-php-ini-directives-php-fpm-cpanel\/","url":"https:\/\/www.skynats.com\/blog\/manage-php-ini-directives-php-fpm-cpanel\/","name":"Manage PHP.ini Directives with PHP FPM on cPanel Easily","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"datePublished":"2024-06-03T07:54:16+00:00","dateModified":"2025-10-28T05:52:48+00:00","description":"Learn how to manage PHP.ini directives with PHP FPM on a cPanel server. Optimize your PHP settings for better performance and control","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/manage-php-ini-directives-php-fpm-cpanel\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/manage-php-ini-directives-php-fpm-cpanel\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/manage-php-ini-directives-php-fpm-cpanel\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Manage PHP.ini Directives with PHP FPM on a cPanel Server"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/255d12fc66a62db365022ecbb5846276","name":"Sourav AJ","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","caption":"Sourav AJ"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/12510","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=12510"}],"version-history":[{"count":1,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/12510\/revisions"}],"predecessor-version":[{"id":16386,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/12510\/revisions\/16386"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=12510"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=12510"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=12510"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}