How to solve 413 request entity too large in AWS elastic beanstalk solution-1

To solve 413 request error in AWS elastic beanstalk with node.js application follow the below steps. Note: this solution currently tried with the Nginx server but works with apache too. This method is a custom hack to increase the upload file size without using awsebcli. step1: In your node.js application root folder create folder name called .ebextensions. step2: Inside this folder create a file with any filename ending with “.config” extensions example: nginxfile.config. step3: Now open the created file and copy-paste the below-mentioned code into file and save. step4: At…

Read More