How to Hide Nginx Server Version in Linux? Last Updated : 17 Mar, 2021 Summarize Comments Improve Suggest changes Share Like Article Like Report Here we will see how to hide the Nginx server version from error pages and the “Server HTTP” response header field in Linux. This is one of the most important security recommendations for your Nginx HTTP and proxy server. The Nginx will show the version on error pages and in the “Server” response header field. Hiding The Nginx version: To hide the Nginx server version on Linux and Unix-like systems, set server tokens to off. Using a text editor like vim/nano, edit the nginx.conf file: $ sudo nano /etc/nginx/nginx.confFind server_token off; Now Uncomment server_tokken off: Uncomment server_token off; Now save the file and restart Nginx server to take effect. $ sudo systemctl restart nginxRestart Nginx server Verify that Nginx version is hidden: Now verify Nginx version hidden or not. Verify Nginx hidden or not On Linux or Unix-based systems, we've shown you how to easily hide the Nginx version. Nginx plus (commercial/paid option) users can also create their own Nginx version. Comment More infoAdvertise with us Next Article How to Find Out Postfix Mail Server Version in Linux? J jayantmehra02 Follow Improve Article Tags : Linux-Unix How To Similar Reads How to Find Out Postfix Mail Server Version in Linux? The most commonly used implementations of SMTP in most Linux distros are Sendmail and Postfix. Postfix is an open-source mail-transfer agent that was originally developed as an alternative to Sendmail and is usually set up as the default mail server. We'll show you how to figure out what version of 1 min read How to Set Nginx Max Open Files in Linux In Linux, the Nginx depends on the system limits for maximum open files to efficiently handle the parallel connections and to serve the web content. The maximum open file limit determines the number of files, which includes the sockets, that Nginx can simultaneously have opened. We can adjust this l 4 min read How to List All vhosts in nginx in Linux On Ngnix Web Server on Linux, the virtual host or vhost refers to the task of hosting various websites on a single server by configuring various server blocks that are associated with the specific domain or IP address. This server mainly blocks allo Ngnix to handle incoming requirements and then dir 4 min read How to Install Specific NPM Version ? Node Package Manager (npm) is the default package manager for Node.js and is crucial for managing JavaScript libraries and frameworks. Sometimes, you may need to install a specific version of npm to ensure compatibility with certain projects, scripts, or tools. This article explains how to install a 2 min read How To Install Nginx On Amazon linux ? Nginx, at first conveyed in 2004 by Igor Sysoev, is a decent open-source web server, switch go-between, load balancer, and HTTP store. With its occasion-driven planning, Nginx productively handles endless simultaneous affiliations, making it ideal for high-traffic districts and applications.It keeps 6 min read How to Define the Required Node.js Version in package.json? Like the other project dependencies we can also define the node js version for a project. As we know that node is javascript runtime so it will not be contained by the normal dependencies. It ensures that the project should run and install only the compaitible node and npm version.ApproachThe define 3 min read Like