diff -ru docs/conf/httpd-std.conf.in docs.new/conf/httpd-std.conf.in --- docs/conf/httpd-std.conf.in 2006-07-23 18:02:40.000000000 +0200 +++ docs.new/conf/httpd-std.conf.in 2006-07-23 18:10:07.000000000 +0200 @@ -520,8 +520,9 @@ # This directive configures what you return as the Server HTTP response # Header. The default is 'Full' which sends information about the OS-Type # and compiled in modules. -# Set to one of: Full | OS | Minor | Minimal | Major | Prod -# where Full conveys the most information, and Prod the least. +# Set to one of: Full | OS | Minor | Minimal | Major | Prod | Off +# where Full conveys the most information, and Prod the least. Off will display +# no information at all. # ServerTokens Full Only in docs.new/conf: httpd-std.conf.in~ diff -ru docs/conf/httpd-win.conf docs.new/conf/httpd-win.conf --- docs/conf/httpd-win.conf 2006-07-23 18:02:40.000000000 +0200 +++ docs.new/conf/httpd-win.conf 2006-07-23 18:06:02.000000000 +0200 @@ -446,8 +446,9 @@ # This directive configures what you return as the Server HTTP response # Header. The default is 'Full' which sends information about the OS-Type # and compiled in modules. -# Set to one of: Full | OS | Minor | Minimal | Major | Prod -# where Full conveys the most information, and Prod the least. +# Set to one of: Full | OS | Minor | Minimal | Major | Prod | Off +# where Full conveys the most information, and Prod the least. Off will +# display no information at all. # ServerTokens Full Only in docs.new/conf: httpd-win.conf~ diff -ru docs/manual/mod/core.xml docs.new/manual/mod/core.xml --- docs/manual/mod/core.xml 2006-07-23 18:03:16.000000000 +0200 +++ docs.new/manual/mod/core.xml 2006-07-23 18:08:23.000000000 +0200 @@ -2792,7 +2792,7 @@ ServerTokens Configures the Server HTTP response header -ServerTokens Major|Minor|Min[imal]|Prod[uctOnly]|OS|Full +ServerTokens Major|Minor|Min[imal]|Prod[uctOnly]|OS|Full|Off ServerTokens Full server config @@ -2832,6 +2832,10 @@
Server sends (e.g.): Server: Apache/2.0.41 (Unix) PHP/4.2.2 MyMod/1.2
+ +
ServerTokens Off
+ +
Server does not send a Server header

This setting applies to the entire server, and cannot be Only in docs.new/manual/mod: core.xml~