I am running a server on nodejs with express. I can't seem to get rid of the header:
X-Powered-By:Express
I was wondering if there is any way to get rid of this header or do I have to live with it?
|
I am running a server on nodejs with express. I can't seem to get rid of the header:
I was wondering if there is any way to get rid of this header or do I have to live with it? |
|||
|
|
|
In Express >= 3.0.0rc5:
Here is a simple middleware that removes the header in earlier versions of Express:
|
|||||||
|
|
As of Express v3.0.0rc5, support for disabling the
|
|||
|
|
|
Just to piggy-back on rjack's answer, you could also (optionally) just change (set) the X-powered-by header to something much cooler/custom like this:
|
|||
|
|
|
Here's a handy middleware you can drop in to swap out X-Powered-By:
Setting X-Powered by in this case would override the default 'Express', so you do not need to both disable AND set a new value. |
|||
|
|
|
Reading the code https://github.com/visionmedia/express/blob/master/lib/http.js#L72 makes me think that you will have to live with it since it doesn't seem to be conditional. If you have an nginx/apache frontend you can still remove the header with it (with mod_headers for apache and headers-more for nginx) |
|||
|
|
removeHeader will work only in route middleware, coffeescript example
|
|||
|
|
|
Maybe this could be obvious to the more seasoned Express users, but only this worked for me:
|
|||
|
|