How to hide the nginx server version for security reasons.
Just use the server_tokens variable and restart the webserver afterwards.
vim /etc/nginx/nginx.conf server_tokens off;
systemctl reload nginx
How to hide the nginx server version for security reasons.
Just use the server_tokens variable and restart the webserver afterwards.
vim /etc/nginx/nginx.conf server_tokens off;
systemctl reload nginx