tags:

views:

670

answers:

1

Please let me know how can I remove default banner of web server from response - Apache http1.1 coyote

+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