Skip to content

How to hide nginx version on CentOS

homepage-banner

TL;DR

modify nginx.conf

add the following in to http { }

http {

    server_tokens off;

}
Leave a message