Please let me know how can I remove default banner of web server from response - Apache http1.1 coyote
views:
670answers:
1
+1
A:
If you're talking about the generated line at the bottom of apache generated pages, you have to update your httpd.conf with this command:
ServerSignature Off
See http://httpd.apache.org/docs/2.2/mod/core.html#serversignature
Be careful, theses informations are also sent through HTTP headers. You can alter them via this directive
About Coyote, AFAIK there is no key to hide these info.
Pierre-Yves Gillier
2008-11-27 10:01:41