{"id":1160,"date":"2021-01-07T18:06:46","date_gmt":"2021-01-07T12:36:46","guid":{"rendered":"http:\/\/192.168.0.6\/linuxbots\/?p=1160"},"modified":"2021-01-07T18:06:49","modified_gmt":"2021-01-07T12:36:49","slug":"413-request-entity-too-large","status":"publish","type":"post","link":"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/","title":{"rendered":"413 request entity too large error solution"},"content":{"rendered":"\n<p>I am personally using Nginx as my primary web server with PHP-FPM but also having some setups with Nginx as a proxy to Apache Server. Many times, when I try to upload a file or made a large HTTP request, Nginx gives the error 413 request entity too large. That&#8217;s why I thought this issue needs to be documented.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" src=\"https:\/\/oracle.itsupportwale.com\/blog\/wp-content\/uploads\/2020\/04\/request-entity-too-large-error.jpg\" alt=\"413 request entity too large\" class=\"wp-image-3466\" srcset=\"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2020\/04\/request-entity-too-large-error.jpg 1024w, https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2020\/04\/request-entity-too-large-error-300x200.jpg 300w, https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2020\/04\/request-entity-too-large-error-768x512.jpg 768w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>Error 413 request entity too large occurs when a client request exceeds the maximum accepted body size by the webserver configuration. The two most used webservers are <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https:\/\/www.apache.org\/\" target=\"_blank\">Apache<\/a> and <a rel=\"noreferrer noopener\" aria-label=\"Nginx (opens in a new tab)\" href=\"http:\/\/nginx.org\/\" target=\"_blank\">Nginx<\/a>. <\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Also Read:  <a rel=\"noreferrer noopener\" label=\"How To Install Nginx on Ubuntu 18.04 (opens in a new tab)\" href=\"https:\/\/oracle.itsupportwale.com\/blog\/how-to-install-nginx-on-ubuntu-18-04\/\" target=\"_blank\">How To Install Nginx on Ubuntu 18.04<\/a><\/li><\/ul>\n\n\n\n<p>The default request size allowed by Apache is unlimited but in Nginx, it is only 1 MB. That&#8217;s why when we try to upload a file larger than 1 MB, Nginx giving the request entity too large error. In this article, you will find how to control HTTP request size in Apache and Nginx.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-fixing-request-entity-too-large-error-in-nginx\">Fixing request entity too large error in Nginx<\/h2>\n\n\n\n<p>In Nginx, the maximum client request body size is defined by the <a href=\"http:\/\/nginx.org\/en\/docs\/http\/ngx_http_core_module.html\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"client_max_body_size  (opens in a new tab)\">client_max_body_size <\/a>directive. By default, it is defined in the Nginx configuration file located in \/etc\/nginx\/nginx.conf. However, you can directly define it into either your http, location or server block.<\/p>\n\n\n\n<p>Open the configuration file in any text editor (vim, vi, or nano).<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo vim \/etc\/nginx\/nginx.conf\n#############OR##############\nsudo nano \/etc\/nginx\/nginx.conf<\/code><\/pre>\n\n\n\n<p>In the below example, the maximum body size is 20 MB. However, if you do not want to set a limit for request body size then you can set its value to 0 for unlimited.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>server {\n    ...\n    client_max_body_size 20M;\n    ...\n}<\/code><\/pre>\n\n\n\n<p>After that, you have to reload the Nginx service for applying changes. Use the below command for reloading the Nginx service.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo service nginx reload\n###### OR #######\nsudo systemctl reload nginx.service<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-apache-configuration\">Apache Configuration<\/h2>\n\n\n\n<p>In the Apache web server, the max client request body size is defined by the <strong><a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"http:\/\/httpd.apache.org\/docs\/2.0\/mod\/core.html#limitrequestbody\" target=\"_blank\">LimitRequestBody<\/a> <\/strong>directive. By default, it is set to 0 which means unlimited. But you can set it to your desired value. You can define the LimitRequestBody directive in your http.cong file or you can directly define it in your .htaccess file.<\/p>\n\n\n\n<p>In the below example, we limit the max request body size to 20 MB. We have to define the value in bytes.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>LimitRequestBody 20971520<\/code><\/pre>\n\n\n\n<p>After making changes, you have to reload the Apache server for applying changes. Use the below command to reload the Apache Service.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>service apache2 reload<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-php-configuration\">PHP Configuration<\/h2>\n\n\n\n<p>If you are using PHP, then you also remember to set the maximum upload size in the PHP configuration. You can set it by defining the below two directives in your php.ini file.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#The maximum size of an uploaded file.\nupload_max_filesize = 20M\n\n#max size of post data.this value must be larger than upload_max_filesize\npost_max_size = 30M<\/code><\/pre>\n\n\n\n<p>After that, If you are using Apache then reload Apache service by the below command.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>service apache2 reload<\/code><\/pre>\n\n\n\n<p>And if you are using PHP-FPM, then you have to restart PHP-FPM service by using the below command.<\/p>\n\n\n\n<p>Note: Change php7.4-fpm to your current php-fpm version.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart php7.4-fpm.service\n###################OR#####################\nsudo service php-fpm restart<\/code><\/pre>\n\n\n\n<p>Do not forget to share your thoughts in the comment section.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I am personally using Nginx as my primary web server with PHP-FPM but also having some setups with Nginx as a proxy to Apache Server. Many times, when I try to upload a file or made a large HTTP request, Nginx gives the error 413 request entity too large. That&#8217;s why I thought this issue &#8230; <a title=\"413 request entity too large error solution\" class=\"read-more\" href=\"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/\" aria-label=\"Read more  on 413 request entity too large error solution\">Read more<\/a><\/p>\n","protected":false},"author":2,"featured_media":3466,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[69,498,500,258,504,506],"tags":[512,513,523,227,541],"class_list":["post-1160","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-fixed-erros","category-foss","category-linux","category-php","category-tutorial","category-web-server","tag-apache","tag-apache-webserver","tag-fixed-errors","tag-nginx","tag-nginx-webserver"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>413 request entity too large error solution - ITSupportWale<\/title>\n<meta name=\"description\" content=\"Error 413 request entity too large occurs when a client request exceeds the maximum accepted body size by the webserver configuration.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"413 request entity too large error solution - ITSupportWale\" \/>\n<meta property=\"og:description\" content=\"Error 413 request entity too large occurs when a client request exceeds the maximum accepted body size by the webserver configuration.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/\" \/>\n<meta property=\"og:site_name\" content=\"ITSupportWale\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Itsupportwale-298547177495978\" \/>\n<meta property=\"article:published_time\" content=\"2021-01-07T12:36:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-01-07T12:36:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2020\/04\/request-entity-too-large-error.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"683\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Techie\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Techie\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/\"},\"author\":{\"name\":\"Techie\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/#\/schema\/person\/8c5a2b3d36396e0a8fd91ec8242fd46d\"},\"headline\":\"413 request entity too large error solution\",\"datePublished\":\"2021-01-07T12:36:46+00:00\",\"dateModified\":\"2021-01-07T12:36:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/\"},\"wordCount\":466,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2020\/04\/request-entity-too-large-error.jpg\",\"keywords\":[\"apache\",\"apache webserver\",\"Fixed-Errors\",\"nginx\",\"nginx webserver\"],\"articleSection\":[\"fixed-erros\",\"FOSS\",\"Linux\",\"php\",\"Tutorial\",\"Web Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/\",\"url\":\"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/\",\"name\":\"413 request entity too large error solution - ITSupportWale\",\"isPartOf\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2020\/04\/request-entity-too-large-error.jpg\",\"datePublished\":\"2021-01-07T12:36:46+00:00\",\"dateModified\":\"2021-01-07T12:36:49+00:00\",\"description\":\"Error 413 request entity too large occurs when a client request exceeds the maximum accepted body size by the webserver configuration.\",\"breadcrumb\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/#primaryimage\",\"url\":\"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2020\/04\/request-entity-too-large-error.jpg\",\"contentUrl\":\"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2020\/04\/request-entity-too-large-error.jpg\",\"width\":1024,\"height\":683,\"caption\":\"413 request entity too large\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/itsupportwale.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"413 request entity too large error solution\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/#website\",\"url\":\"https:\/\/itsupportwale.com\/blog\/\",\"name\":\"ITSupportWale\",\"description\":\"Tips, Tricks, Fixed-Errors, Tutorials &amp; Guides\",\"publisher\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/itsupportwale.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/#organization\",\"name\":\"itsupportwale\",\"url\":\"https:\/\/itsupportwale.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2023\/09\/cropped-Logo-trans-without-slogan.png\",\"contentUrl\":\"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2023\/09\/cropped-Logo-trans-without-slogan.png\",\"width\":1119,\"height\":144,\"caption\":\"itsupportwale\"},\"image\":{\"@id\":\"https:\/\/itsupportwale.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/Itsupportwale-298547177495978\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/itsupportwale.com\/blog\/#\/schema\/person\/8c5a2b3d36396e0a8fd91ec8242fd46d\",\"name\":\"Techie\",\"sameAs\":[\"https:\/\/itsupportwale.com\",\"iswblogadmin\"],\"url\":\"https:\/\/itsupportwale.com\/blog\/author\/iswblogadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"413 request entity too large error solution - ITSupportWale","description":"Error 413 request entity too large occurs when a client request exceeds the maximum accepted body size by the webserver configuration.","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:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/","og_locale":"en_US","og_type":"article","og_title":"413 request entity too large error solution - ITSupportWale","og_description":"Error 413 request entity too large occurs when a client request exceeds the maximum accepted body size by the webserver configuration.","og_url":"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/","og_site_name":"ITSupportWale","article_publisher":"https:\/\/www.facebook.com\/Itsupportwale-298547177495978","article_published_time":"2021-01-07T12:36:46+00:00","article_modified_time":"2021-01-07T12:36:49+00:00","og_image":[{"width":1024,"height":683,"url":"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2020\/04\/request-entity-too-large-error.jpg","type":"image\/jpeg"}],"author":"Techie","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Techie","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/#article","isPartOf":{"@id":"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/"},"author":{"name":"Techie","@id":"https:\/\/itsupportwale.com\/blog\/#\/schema\/person\/8c5a2b3d36396e0a8fd91ec8242fd46d"},"headline":"413 request entity too large error solution","datePublished":"2021-01-07T12:36:46+00:00","dateModified":"2021-01-07T12:36:49+00:00","mainEntityOfPage":{"@id":"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/"},"wordCount":466,"commentCount":0,"publisher":{"@id":"https:\/\/itsupportwale.com\/blog\/#organization"},"image":{"@id":"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/#primaryimage"},"thumbnailUrl":"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2020\/04\/request-entity-too-large-error.jpg","keywords":["apache","apache webserver","Fixed-Errors","nginx","nginx webserver"],"articleSection":["fixed-erros","FOSS","Linux","php","Tutorial","Web Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/","url":"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/","name":"413 request entity too large error solution - ITSupportWale","isPartOf":{"@id":"https:\/\/itsupportwale.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/#primaryimage"},"image":{"@id":"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/#primaryimage"},"thumbnailUrl":"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2020\/04\/request-entity-too-large-error.jpg","datePublished":"2021-01-07T12:36:46+00:00","dateModified":"2021-01-07T12:36:49+00:00","description":"Error 413 request entity too large occurs when a client request exceeds the maximum accepted body size by the webserver configuration.","breadcrumb":{"@id":"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/#primaryimage","url":"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2020\/04\/request-entity-too-large-error.jpg","contentUrl":"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2020\/04\/request-entity-too-large-error.jpg","width":1024,"height":683,"caption":"413 request entity too large"},{"@type":"BreadcrumbList","@id":"https:\/\/itsupportwale.com\/blog\/413-request-entity-too-large\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/itsupportwale.com\/blog\/"},{"@type":"ListItem","position":2,"name":"413 request entity too large error solution"}]},{"@type":"WebSite","@id":"https:\/\/itsupportwale.com\/blog\/#website","url":"https:\/\/itsupportwale.com\/blog\/","name":"ITSupportWale","description":"Tips, Tricks, Fixed-Errors, Tutorials &amp; Guides","publisher":{"@id":"https:\/\/itsupportwale.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/itsupportwale.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/itsupportwale.com\/blog\/#organization","name":"itsupportwale","url":"https:\/\/itsupportwale.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/itsupportwale.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2023\/09\/cropped-Logo-trans-without-slogan.png","contentUrl":"https:\/\/itsupportwale.com\/blog\/wp-content\/uploads\/2023\/09\/cropped-Logo-trans-without-slogan.png","width":1119,"height":144,"caption":"itsupportwale"},"image":{"@id":"https:\/\/itsupportwale.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Itsupportwale-298547177495978"]},{"@type":"Person","@id":"https:\/\/itsupportwale.com\/blog\/#\/schema\/person\/8c5a2b3d36396e0a8fd91ec8242fd46d","name":"Techie","sameAs":["https:\/\/itsupportwale.com","iswblogadmin"],"url":"https:\/\/itsupportwale.com\/blog\/author\/iswblogadmin\/"}]}},"_links":{"self":[{"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/posts\/1160","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/comments?post=1160"}],"version-history":[{"count":0,"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/posts\/1160\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/media\/3466"}],"wp:attachment":[{"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/media?parent=1160"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/categories?post=1160"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/itsupportwale.com\/blog\/wp-json\/wp\/v2\/tags?post=1160"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}