On Wed, Aug 24, 2011 at 10:35:18AM +0530, Amlan Mandal wrote:
> Is there any way to check/print what is the value of ServerTokens on
> runtime?
Yes, you can use the facilities of mod_info to determine the values set
by various directives at runtime. See
http://httpd.apache.org/docs/2.2/mod/mod_inf
Lets say I have set some config value (ServerTokens) to OS in my httpd.conf
in conf dir
ServerTokens OS
I have overridden that in conf.d/x.conf
ServerTokens Z
Is there any way to check/print what is the value of ServerTokens on
runtime?
Amlan