#
-# Server-Pool Size Regulation (MPM specific)
+# Server-Pool Management (MPM specific)
#
-# Only one of the below sections will be relevant on your
-# installed httpd. Use "apachectl -l" to find out the
-# active mpm.
#
# PidFile: The file in which the server should record its process
PidFile @rel_runtimedir@/httpd.pid
</IfModule>
+#
+# The accept serialization lock file MUST BE STORED ON A LOCAL DISK.
+#
+<IfModule !mpm_winnt_module>
+<IfModule !mpm_netware_module>
+LockFile @rel_logfiledir@/accept.lock
+</IfModule>
+</IfModule>
+
+#
+# Only one of the below sections will be relevant on your
+# installed httpd. Use "apachectl -l" to find out the
+# active mpm.
+#
+
# prefork MPM
# StartServers: number of server processes to start
# MinSpareServers: minimum number of server processes which are kept spare
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
-# Do NOT add a slash at the end of the directory path.
+# Do NOT add a slash at the end of the directory path. If you point
+# ServerRoot at a non-local disk, be sure to point the LockFile directive
+# at a local disk. If you wish to share the same ServerRoot for multiple
+# httpd daemons, you will need to change at least LockFile and PidFile.
#
ServerRoot "@@ServerRoot@@"
-# NOTE! The following two directives are used on some systems
-# to coordinate the httpd children. THEY MUST BE STORED ON
-# A LOCAL DISK!
-#
-#LockFile @rel_logfiledir@/accept.lock
-#ScoreBoardFile @rel_logfiledir@/apache_runtime_status
-
#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>