Creating an HA Docker Swarm over AWS

Introduction Hello everyone!!! In this post, we will be discussing Docker Swarm creation over AWS. As we all know, Docker is a technology that allows you to build, run, test, and deploy distributed applications that are based on Linux containers. More often, distributed systems are given preferences over standalone production containers. There are various advantages ... Read More

Allow nginx to upload more than 1 MB file

By default Nginx will allow uploading 1 MB file, By using below directive we can upload up to 10 MB If we need to upload larger than 10 MB just replace 10 with your specified size. client_body_in_file_only clean; client_body_buffer_size 32K; client_max_body_size 10M; Once above directive defined in virtual host restart the Nginx to take effect.