how to set up rabbit mq in docker swarm

Setting up RabbitMQ in Docker Swarm for involves orchestrating RabbitMQ services across multiple nodes, ensuring high availability, and configuring security and monitoring features. Below are step-by-step instructions to set up RabbitMQ in Docker Swarm for production: Prerequisites: Steps to Set Up RabbitMQ in Docker Swarm: Remember, these are general guidelines, and you should adapt them […]

Read more

Compression on node js by gzip

Compression is the process that decreases the file sizes. During the compression process all details from the original file will be  maintained in compressed file. It boosts the working of Node.js applications by decreasing above 70 % of size. Introduction: Gzip is a file format and software application which is used in Unix systems for […]

Read more

Configure Nginx as Reverse Proxy for WebSocket

WebSocket is a computer communication protocol which provides full-duplex communication channels over a single TCP connection. It makes possible to create web applications that supports real-time bi-directional communication between both clients and servers. Most of the modern web browsers support WebSocket including all size devices. While making web applications having realtime communication features like audio […]

Read more

Create and Extract Tar archive files

Tar is a popular archiving format on linux, most time distress are compressed in tar to deliver packages and updates. Tar is also common in file sharing online. Everybody is used to compressing and extracting files using tar but always confuse with options should be passed based on file extension. Lets see how to compress […]

Read more