{"id":4668,"date":"2018-09-19T13:33:31","date_gmt":"2018-09-19T17:33:31","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2018\/09\/19\/php-fpm-settings-for-better-optimization\/"},"modified":"2023-08-15T13:08:17","modified_gmt":"2023-08-15T17:08:17","slug":"php-fpm-settings-for-better-optimization","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/","title":{"rendered":"PHP-FPM Settings for Better Optimization"},"content":{"rendered":"<p>After <a href=\"\/support\/server\/php-fpm\/how-to-enable-php-fpm-using-whm\/\" target=\"_blank\" rel=\"noopener noreferrer\">enabling PHP-FPM<\/a> (PHP-FastCGI Process Manager) on your <a href=\"https:\/\/www.inmotionhosting.com\/vps-hosting\"><abbr title=\"Virtual Private Server\">VPS<\/abbr><\/a>, you\u2019ll need to know how to <a href=\"\/support\/server\/php-fpm\/how-to-restart-php-fpm\/\" target=\"_blank\" rel=\"noopener noreferrer\">restart the PHP-FPM service<\/a> and modify its settings. Below we cover how to <strong>adjust PHP-FPM settings<\/strong> according to traffic load per cPanel account.<\/p>\n<ol class=\"article_list\">\n<li><a href=\"\/support\/edu\/whm\/log-into-whm\/#whm-root-access\" target=\"_blank\" rel=\"noopener noreferrer\">Login WHM as Root<\/a>.<\/li>\n<li>From the menu, search and select <strong>MulitiPHPManager<\/strong>.<\/li>\n<li>\n<div style=\"height: 80px; overflow: hidden; float: right;\">\n<p><a href=\"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/whm\/multiphp-manager\/php-fpm\/whm-php-fpm-5-multiphpmanager-enable.png\" rel=\"lightbox-0\"><img decoding=\"async\" class=\"std_ss\" title=\"Click for full image\" src=\"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/whm\/multiphp-manager\/php-fpm\/whm-php-fpm-5-multiphpmanager-enable.png\" alt=\"Enable PHP-FPM\" width=\"300\" align=\"none\"><\/a><\/p>\n<div style=\"clear: both;\"><\/div>\n<\/div>\n<p>Select <strong>Turn on<\/strong> to <strong>enable PHP-FPM for all cPanel accounts<\/strong>. Alternatively, you can select the checkbox beside specific domains at the bottom, choose <em>On<\/em> from the dropdown menu beside <strong>PHP-FPM<\/strong>, and select <strong>Apply<\/strong>.<br>\nYou can also <a href=\"\/support\/website\/how-to-change-the-php-version-your-account-uses\/\" target=\"_blank\" rel=\"noopener noreferrer\">change the PHP version<\/a> here instead of in cPanel.<\/p><\/li>\n<li>Select <strong>Pool Options<\/strong> beside the specified domain.<\/li>\n<li>\n<div style=\"height: 80px; overflow: hidden; float: right;\">\n<p><a href=\"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/whm\/multiphp-manager\/php-fpm\/whm-php-fpm-4-multiphpmanager.png\" rel=\"lightbox-0\"><img decoding=\"async\" class=\"std_ss\" title=\"Click for full image\" src=\"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/whm\/multiphp-manager\/php-fpm\/whm-php-fpm-4-multiphpmanager.png\" alt=\"Edit PHP-FPM settings\" width=\"300\" align=\"none\"><\/a><\/p>\n<div style=\"clear: both;\"><\/div>\n<\/div>\n<p><strong>Modify PHP-FPM settings for the domain<\/strong>. Below are commonly successful changes according to amount of traffic your VPS receives.<\/p>\n<table style=\"width: 50%;\">\n<tbody>\n<tr>\n<th>Traffic Load<\/th>\n<th>Average<\/th>\n<th>Heavy<\/th>\n<\/tr>\n<tr>\n<td>Max Children<\/td>\n<td>25-35<\/td>\n<td>40-60<\/td>\n<\/tr>\n<tr>\n<td>Process Idle Timeout<\/td>\n<td>100<\/td>\n<td>100-150<\/td>\n<\/tr>\n<tr>\n<td>Max Requests<\/td>\n<td>200-350<\/td>\n<td>400-600<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/li>\n<\/ol>\n<h2>Edit Default PHP-FPM Settings<\/h2>\n<p>If you have many cPanel accounts, you may prefer to <strong>change the default settings<\/strong> for newly created cPanel accounts.<\/p>\n<ol class=\"article_list\">\n<li>As <a href=\"\/support\/amp\/obtain-root-access\/\" target=\"_blank\" rel=\"noopener noreferrer\">root<\/a>, <a href=\"\/support\/server\/ssh\/how-to-login-ssh\/\" target=\"_blank\" rel=\"noopener noreferrer\">SSH into your server<\/a> or launch <a href=\"\/support\/edu\/cpanel\/how-to-launch-the-cpanel-terminal\/\" target=\"_blank\" rel=\"noopener noreferrer\">WHM terminal<\/a>.<\/li>\n<li><strong>Create a <em>system_pool_defaults.yaml<\/em> file<\/strong> in the <code>\/var\/cpanel\/ApachePHPFPM<\/code> directory. To do this using nano, type the following:<br>\n<code>nano \/var\/cpanel\/ApachePHPFPM\/system_pool_defaults.yaml<\/code>Add the following to the new file:<code>php_value_error_reporting: 'E_ALL'<br>\npm_max_children: 500<br>\npm_max_requests: 2000<br>\npm_min_spare_servers: 1<br>\npm_max_spare_servers: 25<br>\npm_process_idle_timeout: 150<br>\nphp_value_disable_functions: 0<\/code><strong><br>\npm_<a href=\"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/fix-max-children-error\/\">max_children<\/a>:<\/strong> Max number of child processes<br>\n<strong>pm_max_requests:<\/strong> Number of requests a child process executes before respawning.<br>\n<strong>pm_min_spare_servers:<\/strong> Minimum idle server processes<br>\n<strong>pm_max_spare_servers:<\/strong> Maximum idle server processes<br>\n<strong>pm_process_idle_timeout:<\/strong> Time until an idle process is killed in s(econds), m(inutes), m(inutes), h(ours), or d(ays).<br>\n<strong>php_value_disable_functions:<\/strong> Functions to disable. This doesn\u2019t overwrite php.ini settings.<\/li>\n<li>Save and exit the file. Using nano, press <kbd>Control<\/kbd> and <kbd>x<\/kbd> for the save prompt before exiting. Press <kbd>y<\/kbd>, then <kbd>Enter \u2936<\/kbd> to save the file.<\/li>\n<li><strong>Rebuild PHP-FPM<\/strong> using the following command:<br>\n<code>\/scripts\/php_fpm_config --rebuild<\/code><\/li>\n<li><strong>Restart PHP-FPM<\/strong> using the following command:<br>\n<code>\/scripts\/restartsrv_apache_php_fpm<\/code>\n<p class=\"alert alert-info\"><strong>Note:<\/strong>You can also <a href=\"\/support\/server\/php-fpm\/how-to-restart-php-fpm\/\" target=\"_blank\" rel=\"noopener noreferrer\">restart <strong>PHP-FPM<\/strong> from WHM<\/a>.<\/p>\n<\/li>\n<\/ol>\n<p>These adjustments should help you make the most out of your VPS optimization and <a href=\"https:\/\/www.inmotionhosting.com\/php-hosting\">PHP hosting<\/a>. You can learn more configuration options for PHP-FPM with <a href=\"https:\/\/documentation.cpanel.net\/display\/68Docs\/Configuration+Values+of+PHP-FPM\" target=\"_blank\" rel=\"noopener noreferrer\">official cPanel documentation<\/a>. You can read more about the benefits of PHP-FPM in <a href=\"\/support\/server\/php-fpm\/php-fpm-the-future-of-php-handling\/\" target=\"_blank\" rel=\"noopener noreferrer\">our in-depth article<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>After enabling PHP-FPM (PHP-FastCGI Process Manager) on your VPS, you\u2019ll need to know how to restart the PHP-FPM service and modify its settings. Below we cover how to adjust PHP-FPM settings according to traffic load per cPanel account. Login WHM as Root. From the menu, search and select MulitiPHPManager. Select Turn on to enable PHP-FPM<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4449],"tags":[],"class_list":["post-4668","post","type-post","status-publish","format-standard","hentry","category-php-fpm"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>PHP-FPM Settings for Better Optimization | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"Learn how to modify PHP-FPM for increased VPS optimization\" \/>\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.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PHP-FPM Settings for Better Optimization | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"Learn how to modify PHP-FPM for increased VPS optimization\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-09-19T17:33:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-15T17:08:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/whm\/multiphp-manager\/php-fpm\/whm-php-fpm-5-multiphpmanager-enable.png\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InMotion Hosting Contributor\" \/>\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.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"PHP-FPM Settings for Better Optimization\",\"datePublished\":\"2018-09-19T17:33:31+00:00\",\"dateModified\":\"2023-08-15T17:08:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/\"},\"wordCount\":359,\"commentCount\":8,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/whm\/multiphp-manager\/php-fpm\/whm-php-fpm-5-multiphpmanager-enable.png\",\"articleSection\":[\"PHP-FPM\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/\",\"name\":\"PHP-FPM Settings for Better Optimization | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/whm\/multiphp-manager\/php-fpm\/whm-php-fpm-5-multiphpmanager-enable.png\",\"datePublished\":\"2018-09-19T17:33:31+00:00\",\"dateModified\":\"2023-08-15T17:08:17+00:00\",\"description\":\"Learn how to modify PHP-FPM for increased VPS optimization\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/whm\/multiphp-manager\/php-fpm\/whm-php-fpm-5-multiphpmanager-enable.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/whm\/multiphp-manager\/php-fpm\/whm-php-fpm-5-multiphpmanager-enable.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PHP-FPM Settings for Better Optimization\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\",\"name\":\"InMotion Hosting Contributor\",\"description\":\"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!\",\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/inmotion-hosting\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PHP-FPM Settings for Better Optimization | InMotion Hosting","description":"Learn how to modify PHP-FPM for increased VPS optimization","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.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/","og_locale":"en_US","og_type":"article","og_title":"PHP-FPM Settings for Better Optimization | InMotion Hosting","og_description":"Learn how to modify PHP-FPM for increased VPS optimization","og_url":"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2018-09-19T17:33:31+00:00","article_modified_time":"2023-08-15T17:08:17+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/whm\/multiphp-manager\/php-fpm\/whm-php-fpm-5-multiphpmanager-enable.png","type":"","width":"","height":""}],"author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"InMotion Hosting Contributor","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"PHP-FPM Settings for Better Optimization","datePublished":"2018-09-19T17:33:31+00:00","dateModified":"2023-08-15T17:08:17+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/"},"wordCount":359,"commentCount":8,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/whm\/multiphp-manager\/php-fpm\/whm-php-fpm-5-multiphpmanager-enable.png","articleSection":["PHP-FPM"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/","url":"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/","name":"PHP-FPM Settings for Better Optimization | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/whm\/multiphp-manager\/php-fpm\/whm-php-fpm-5-multiphpmanager-enable.png","datePublished":"2018-09-19T17:33:31+00:00","dateModified":"2023-08-15T17:08:17+00:00","description":"Learn how to modify PHP-FPM for increased VPS optimization","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/whm\/multiphp-manager\/php-fpm\/whm-php-fpm-5-multiphpmanager-enable.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/images\/stories\/whm\/multiphp-manager\/php-fpm\/whm-php-fpm-5-multiphpmanager-enable.png"},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/php-fpm-settings-for-better-optimization\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"PHP-FPM Settings for Better Optimization"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644","name":"InMotion Hosting Contributor","description":"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!","sameAs":["https:\/\/www.linkedin.com\/company\/inmotion-hosting\/","https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":{"id":4449,"name":"PHP-FPM","slug":"php-fpm","link":"https:\/\/www.inmotionhosting.com\/support\/server\/php-fpm\/"},"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4668","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/57014"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=4668"}],"version-history":[{"count":7,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4668\/revisions"}],"predecessor-version":[{"id":106023,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4668\/revisions\/106023"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=4668"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=4668"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=4668"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}