From a1ac1a3503b1045487b22f7be1b27f473ffead7e Mon Sep 17 00:00:00 2001 From: Aaron Bannert Date: Fri, 15 Feb 2002 21:14:30 +0000 Subject: [PATCH] Change the verbage on the ScoreBoardFile in our default configs. Also change the default to be commented out (unspecified) so we get anonymous shared memory by default. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93437 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES | 6 +++++- docs/conf/httpd-std.conf | 10 ++++++---- docs/conf/httpd-win.conf | 10 ++++++---- 3 files changed, 17 insertions(+), 9 deletions(-) diff --git a/CHANGES b/CHANGES index 7332564716..55106e5aef 100644 --- a/CHANGES +++ b/CHANGES @@ -1,12 +1,16 @@ Changes with Apache 2.0.33-dev + *) Change the verbage on the ScoreBoardFile in our default configs. + Also change the default to be commented out (unspecified) so we + get anonymous shared memory by default. [Aaron Bannert] + *) Implement new ScoreBoardFile directive logic. This affects how we create the scoreboard's shared memory segment. If the directive is present, a name-based segment is created. If the directive is not present, first an anonymous segment is created, and if that fails, a name-based segment is created from a file of the name DEFAULT_SCOREBOARD. This gives third-party applications the - ability to access our scoreboard. [Aaron Bannert] + ability to access our scoreboard. [Aaron Bannert] *) Allow mod_deflate to work with non-GET requests and properly send Content-Lengths. [Sander Striker ] diff --git a/docs/conf/httpd-std.conf b/docs/conf/httpd-std.conf index 6533dcb619..7a408098d6 100644 --- a/docs/conf/httpd-std.conf +++ b/docs/conf/httpd-std.conf @@ -60,13 +60,15 @@ ServerRoot "@@ServerRoot@@" # # ScoreBoardFile: File used to store internal server process information. -# Not all architectures require this. But if yours does (you'll know because -# this file will be created when you run Apache) then you *must* ensure that -# no two invocations of Apache share the same scoreboard file. +# If unspecified (the default), the scoreboard will be stored in an +# anonymous shared memory segment, and will be unavailable to third-party +# applications. +# If specified, ensure that no two invocations of Apache share the same +# scoreboard file. The scoreboard file MUST BE STORED ON A LOCAL DISK. # -ScoreBoardFile logs/apache_runtime_status +#ScoreBoardFile logs/apache_runtime_status diff --git a/docs/conf/httpd-win.conf b/docs/conf/httpd-win.conf index c1b93fe773..4714dfa0cd 100644 --- a/docs/conf/httpd-win.conf +++ b/docs/conf/httpd-win.conf @@ -58,11 +58,13 @@ ServerRoot "@@ServerRoot@@" # # ScoreBoardFile: File used to store internal server process information. -# Not all architectures require this. But if yours does (you'll know because -# this file will be created when you run Apache) then you *must* ensure that -# no two invocations of Apache share the same scoreboard file. +# If unspecified (the default), the scoreboard will be stored in an +# anonymous shared memory segment, and will be unavailable to third-party +# applications. +# If specified, ensure that no two invocations of Apache share the same +# scoreboard file. The scoreboard file MUST BE STORED ON A LOCAL DISK. # -ScoreBoardFile logs/apache_runtime_status +#ScoreBoardFile logs/apache_runtime_status # # PidFile: The file in which the server should record its process -- 2.40.0