https://bz.apache.org/bugzilla/show_bug.cgi?id=68832
--- Comment #1 from Giannis Christodoulou <[email protected]> --- Hello, after digging into this I found that you are able to use mod_headers but the response->headers->server gets overwritten, depending on the defined value of ServerTokens. But if you use it in combination with mod_proxy persists. the configuration I used is the following: " Listen 8080 Listen 8081 <VirtualHost *:8081> DocumentRoot "/home/myuser/httpd/2.4.x/htdocs" # change the path accordingly </VirtualHost> <VirtualHost *:8080> ProxyPass / http://localhost:8081/ Header always set Server "server_in_my_opinion" </VirtualHost> " curl -sI http://localhost:8080/index.html | grep -i ^server: Server: server_in_my_opinion -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
