how to hide server name in the response headder | Community
Skip to main content
This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by mariia_lukianets

Apache mod_headers module [1] allows you to control request/response headers, I would check that.

[1] https://httpd.apache.org/docs/current/mod/mod_headers.html 

2 replies

mariia_lukianetsAdobe EmployeeAccepted solution
Adobe Employee
January 13, 2021

Apache mod_headers module [1] allows you to control request/response headers, I would check that.

[1] https://httpd.apache.org/docs/current/mod/mod_headers.html 

Peter_Puzanovs
Community Advisor
Community Advisor
January 13, 2021

Hey Ravi,

 

One option is to fix this by removing this header via the Dispatcher itself. To remove it via Dispatcher:

 

First, enable mod_headers, by adding it to your main .conf file

 

LoadModule headers_module /path/to/your/lib/mod_headers.so

Following which in your .conf file add following command, where ServerName is the name of the header you want to remove from your output.

RequestHeader unset ServerName

 

Regards,

Peter

kautuk_sahni
Community Manager
Community Manager
January 19, 2021
Thank you for sharing the answer.
Kautuk Sahni