How to suppress the Server: HTTP header
Usually, Jetty will send the HTTP Server header on replies. It looks something like this:
You can supress the sending of this header by uncommenting the following line in the etc/jetty.xml file from the distribution:
<Set name="sendServerVersion">true</Set>
You might want to do this to heighten the security of your site by hiding details of the software you are using. Of course, this will do nothing good for Jetty's Netcraft rating
.