{"id":2337,"date":"2025-06-15T12:30:00","date_gmt":"2025-06-15T17:30:00","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=2337"},"modified":"2025-04-23T03:40:48","modified_gmt":"2025-04-23T08:40:48","slug":"413-error-content-too-large","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/","title":{"rendered":"413 Error Content Too Large: What is it and How to Fix It?"},"content":{"rendered":"\n<div id=\"linux-4270250582\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>While working on web applications, you might have encountered the error. <strong>413 Payload Too Large (previously known as 413 Request Entity Too Large)<\/strong>. This error usually appears when a user tries to upload a file or send a request that exceeds the server\u2019s allowed size limit. This article will explain what the 413 error means, why it happens, and how to fix it across different applications, including <strong>NGINX<\/strong>, <strong>Apache<\/strong>, <strong>PHP<\/strong>, <strong>Cloudflare, <\/strong>and other popular application frameworks.<\/p>\n\n\n\n<!--more-->\n\n\n\n<h2 class=\"wp-block-heading\">What Does the 413 Error Mean?<\/h2>\n\n\n\n<p>The 413 error is an HTTP status code that indicates that the request was rejected because it exceeds the server&#8217;s configured limits. This usually occurs during:<\/p>\n\n\n\n<p>\u2022 File uploads (images, videos, PDFs, etc.)<br>\u2022 Large JSON POST requests (common in APIs)<br>\u2022 Multipart form submissions<\/p>\n\n\n\n<p>This issue can occur at different layers in your stack\u2014at the web server (like NGINX or Apache), application layer (Node.js, PHP, Python), or even a proxy\/load balancer, such as Cloudflare.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Fix the 413 Error<\/h2>\n\n\n\n<p>Let\u2019s review how to resolve this error based on your web server or application.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Fixing 413 Error in NGINX<\/h2>\n\n\n\n<p>If your server runs <strong>NGINX<\/strong>, you can fix this error by increasing the c<strong>lient_max_body_size<\/strong> directive, which defines the maximum allowed size for client request bodies.<\/p>\n\n\n\n<p>You\u2019ll need to increase this value if you encounter the 413 error. Open your NGINX configuration file, which is usually located at:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/etc\/nginx\/nginx.conf<\/code><\/pre>\n\n\n\n<p>Or within a specific site configuration inside \/etc\/nginx\/sites-available\/.<br>Add or update the following directive inside the http, server, or location block:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>client_max_body_size 50M;<\/code><\/pre>\n\n\n\n<p>This sets the maximum upload size to 50 MB.<br>After saving your changes, reload NGINX with the command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl reload nginx<\/code><\/pre>\n\n\n\n<p>This change should resolve the 413 error caused by large uploads.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Fixing 413 Error in Apache<\/h2>\n\n\n\n<p>The <strong>LimitRequestBody <\/strong>directive controls the maximum allowed request size if you use <strong>Apache<\/strong>.<br>You will need to modify the Apache Configuration, edit the main configuration file that can be found at:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo nano \/etc\/apache2\/apache2.conf<\/code><\/pre>\n\n\n\n<p>Or update the <strong>.htaccess<\/strong> file for the specific directory:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>LimitRequestBody 52428800<\/code><\/pre>\n\n\n\n<p>The size is in bytes\u2014<strong>52428800 <\/strong>equals <strong>50 MB<\/strong>.<br>Once you&#8217;ve made the change, restart Apache:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart apache2<\/code><\/pre>\n\n\n\n<p>And the changes should take effect after the Apache restart.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Fixing 413 Error in PHP<\/h2>\n\n\n\n<p>When using PHP, you must ensure your <strong>php.ini <\/strong>allows larger file uploads.<\/p>\n\n\n\n<p>Find your php.ini file \u2014 usually located at \/etc\/php\/8.x\/fpm\/php.ini or \/etc\/php\/8.x\/apache2\/php.ini.<br>You can also use the php -i | grep \u2018Configuration File\u2019 command to find the php.ini file.<br>Update or add the following lines:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>upload_max_filesize = 256M\npost_max_size = 256M<\/code><\/pre>\n\n\n\n<p>These two values should equal or exceed the file size you&#8217;re trying to upload.<br>Then you can restart the service if you are using <strong>PHP-FPM<\/strong>. For PHP 8.3, you can use the<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart php8.3-fpm\nsudo systemctl restart nginx<\/code><\/pre>\n\n\n\n<p>If you are using <strong>mod_php <\/strong>with <strong>Apache<\/strong>, you can restart the Apache service with:<\/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\">Fixing 413 Error in Django<\/h2>\n\n\n\n<p>If you&#8217;re using <strong>Django<\/strong>, update the <strong>DATA_UPLOAD_MAX_MEMORY_SIZE<\/strong> setting in <strong>settings.py<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>DATA_UPLOAD_MAX_MEMORY_SIZE = 52428800 # 50 MB<\/code><\/pre>\n\n\n\n<p>Ensure the web server (<strong>Gunicorn<\/strong>, <strong>uWSGI<\/strong>, etc.) is configured to handle larger requests.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Fixing 413 Error Behind Cloudflare<\/h2>\n\n\n\n<p>If you are experiencing this issue on <strong>Cloudflare<\/strong>, it could be due to <strong>Cloudflare<\/strong>\u2019s upload limit on specific plans:<\/p>\n\n\n\n<p>\u2022 Free and Pro plans: 100MB<br>\u2022 Business plan: 200MB<br>\u2022 Enterprise plan: Customizable<\/p>\n\n\n\n<p>To handle larger files, consider bypassing Cloudflare for file upload<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Best Practices to Avoid the 413 Error<\/h2>\n\n\n\n<p>\u2022 Validate file size client-side before uploading.<br>\u2022 Implement chunked uploads or background jobs for better performance and reliability.<br>\u2022 Monitor logs and error reports for failed requests with this 413 error or a similar error message.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The 413 Request Entity Too Large error is a common but easily fixable issue. Whether running NGINX, Apache, PHP, Django, or other applications, increasing the allowed upload size will usually resolve the error. Always test your configuration after changes. Need help adjusting your server configuration or resolving this error by increasing the server limit? Sign up for our <a href=\"https:\/\/linuxhostsupport.com\/monthly-server-management.html\" target=\"_blank\" rel=\"noreferrer noopener\">monthly server management<\/a> or <a href=\"https:\/\/linuxhostsupport.com\/per-incident-support.html\" target=\"_blank\" rel=\"noreferrer noopener\">per-incident server support<\/a>, and let us know how we can help. Our Linux hosting experts are available 24\/7 to assist you.<\/p><div id=\"linux-3892354477\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>While working on web applications, you might have encountered the error. 413 Payload Too Large (previously known as 413 Request Entity Too Large). This error usually appears when a user tries to upload a file or send a request that exceeds the server\u2019s allowed size limit. This article will explain what the 413 error means, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2340,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[321,320,276],"class_list":["post-2337","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-413-error","tag-content-too-large","tag-how-to-fix"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>413 Error Content Too Large: What is it and How to Fix It? | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"What is 413 Error Content Too Large? How can you identify and fix it? Find out everything you need to know, or have us fix it for you.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"413 Error Content Too Large: What is it and How to Fix It? | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"What is 413 Error Content Too Large? How can you identify and fix it? Find out everything you need to know, or have us fix it for you.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-15T17:30:00+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/06\/what-is-413-error-content-too-large.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"742\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"413 Error Content Too Large: What is it and How to Fix It?\",\"datePublished\":\"2025-06-15T17:30:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/\"},\"wordCount\":666,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/06\/what-is-413-error-content-too-large.webp\",\"keywords\":[\"413 error\",\"content too large\",\"how to fix\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/\",\"name\":\"413 Error Content Too Large: What is it and How to Fix It? | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/06\/what-is-413-error-content-too-large.webp\",\"datePublished\":\"2025-06-15T17:30:00+00:00\",\"author\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"What is 413 Error Content Too Large? How can you identify and fix it? Find out everything you need to know, or have us fix it for you.\",\"breadcrumb\":{\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/#primaryimage\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/06\/what-is-413-error-content-too-large.webp\",\"contentUrl\":\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/06\/what-is-413-error-content-too-large.webp\",\"width\":742,\"height\":410,\"caption\":\"What is 413 Error Content Too Large\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/linuxhostsupport.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"413 Error Content Too Large: What is it and How to Fix It?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#website\",\"url\":\"https:\/\/linuxhostsupport.com\/blog\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"413 Error Content Too Large: What is it and How to Fix It? | LinuxHostSupport","description":"What is 413 Error Content Too Large? How can you identify and fix it? Find out everything you need to know, or have us fix it for you.","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:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/","og_locale":"en_US","og_type":"article","og_title":"413 Error Content Too Large: What is it and How to Fix It? | LinuxHostSupport","og_description":"What is 413 Error Content Too Large? How can you identify and fix it? Find out everything you need to know, or have us fix it for you.","og_url":"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2025-06-15T17:30:00+00:00","og_image":[{"width":742,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/06\/what-is-413-error-content-too-large.webp","type":"image\/webp"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"413 Error Content Too Large: What is it and How to Fix It?","datePublished":"2025-06-15T17:30:00+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/"},"wordCount":666,"commentCount":0,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/06\/what-is-413-error-content-too-large.webp","keywords":["413 error","content too large","how to fix"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/","url":"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/","name":"413 Error Content Too Large: What is it and How to Fix It? | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/06\/what-is-413-error-content-too-large.webp","datePublished":"2025-06-15T17:30:00+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"What is 413 Error Content Too Large? How can you identify and fix it? Find out everything you need to know, or have us fix it for you.","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/06\/what-is-413-error-content-too-large.webp","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2025\/06\/what-is-413-error-content-too-large.webp","width":742,"height":410,"caption":"What is 413 Error Content Too Large"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/413-error-content-too-large\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"413 Error Content Too Large: What is it and How to Fix It?"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2337","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=2337"}],"version-history":[{"count":3,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2337\/revisions"}],"predecessor-version":[{"id":2341,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/2337\/revisions\/2341"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/2340"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=2337"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=2337"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=2337"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}