I run a CentOS box with WHM/cPanel, and I rebuilt Apache to have mod_headers.
mod_headers works fine when I am adding new headers, but for some reason I cannot change the "Server:" header to a different value.
I have tried
Header unset Server
Header set Server "Test"
but it still does not change it in the request. Meanwhile, other header directives such as
Header add foo bar
shows up in the HTTP response.
How can I use mod_headers to change the value of the HTTP "Server:" response? Thanks in advance.