
NGINX: TLS with NGINX
TLS is fundamental to modern web security, providing the encryption that protects data in transit between clients and servers. Understanding how NGINX handles TLS is crucial for implementing secure...
TLS is fundamental to modern web security, providing the encryption that protects data in transit between clients and servers. Understanding how NGINX handles TLS is crucial for implementing secure...
NGINX Architecture NGINX is an open source reverse proxy and web server designed for scale. It exploded in popularity as the first line of defence to backend infrastructures. Whether as a caching ...
Building a Backend application requires a communication protocol, a port to bind to, and process to serve requests and produce responses. When using TCP in particular as the transport protocol, a s...
Understanding the difference between Layer 4 and Layer 7 proxying is fundamental to making the right architectural decisions with NGINX. This distinction determines how NGINX processes traffic, wha...
What is NGINX? NGINX is a powerful, versatile tool that serves multiple critical functions in modern web infrastructure: Web Server Serves web content efficiently Handles static files with h...
User Acceptance Testing (UAT) is a crucial stage in the software development lifecycle. This process provides an opportunity for end-users to validate the functionality, usability, and compatibilit...
Using the iWF DSL framework to write workflow on the top of the Temporal platform In this article, We are going to discuss Workflow and design a simple use case using the iWF framework (with Tempo...
The secret to high-quality code is following the path of clean code. Is it a bad approach to have large code files? Yes, It’s bad to have big classes/files in programming. A big file means it is...
RAFT - Distributed Consensus Protocol In this presentation, I talked about the RAFT consensus algorithm which is commonly used in large different systems to achieve consensus in a distributed envi...
The secret to high-quality code is following the path of clean code. A code will remain at its highest quality if it has an understandable and meaningful test. Robert C. Martin in his book, “Clea...