To secure the server you should hide apache banner information from being displayed so the attackers will not found out what version of Apache version you are running on your server and thus making it more difficult for them to exploit your server.
You can hide Apache banner by modify /etc/httpd/conf/httpd.conf
Quote:
Change the ServerSignature line to: ServerSignature Off
Change the ServerTokens line to: ServerTokens Prod
Restart Apache: /sbin/service httpd restart
|