When I was configuring the nodejs server behind nginx, I experienced the issue that nginx always overwrote the Server header response.

This is a bit annoying, since I want to know what version of spludo runs on my site.

The solution is not to set

1
server_tokens off

since that would only disable the version number.

The solution is:

1
proxy_pass_header Server;