Siddhesh Kadam2 min readLinux Restricting Access in Nginx: How to Block Unwanted TrafficWhen managing a web server, it's essential to protect your site from unwanted traffic and malicious activity. Nginx, a popular web...
Siddhesh Kadam2 min readLinux How to Hide the Server Name in Nginx Using the Headers More ModuleWhen running a web server, security and privacy are key considerations. By default, Nginx reveals its server name in the HTTP headers,...
Siddhesh Kadam2 min readLinux Installing Nginx from Source on a Linux System (RHEL9/Rocky9)In this blog, I'll guide you through installing Nginx from source on a Linux system. We'll walk through each step, from installing the...
Siddhesh Kadam2 min readLinux Exploring the Steps to Activate Debug Mode in NginxDebugging is an essential part of maintaining and optimizing your NGINX server. It provides detailed logs that can help you troubleshoot...
Siddhesh Kadam2 min readLinux Configuring Nginx with Multiple Server BlocksNginx is a powerful, flexible web server and reverse proxy server used to serve static content, manage HTTP requests, and balance loads...
Siddhesh Kadam2 min readLinux Nginx Load BalancerNginx is a well-known open-source web server and reverse proxy server that also serves as a load balancer. Setting up a Nginx load...
Siddhesh Kadam2 min readLinux Monitor Nginx StatusEnabling the NGINX status page involves configuring NGINX to expose a special endpoint that provides information about the server's...
Siddhesh Kadam1 min readDockerCustomize Nginx Docker Image Using DockerfileTo create a Dockerfile for an Nginx image with a customized index.html page, you can follow the example below. This assumes you have your...