From 3009d6b45b609cf7dfc863a0d8ae93acfbb8867b Mon Sep 17 00:00:00 2001 From: dgaudet Date: Sun, 29 Jun 1997 18:12:42 +0000 Subject: [PATCH] Merge LockFile docs. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_1_2_X@78447 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/core.html | 37 ++++++++++++++++++++++++++++++--- docs/manual/mod/directives.html | 2 ++ 2 files changed, 36 insertions(+), 3 deletions(-) diff --git a/docs/manual/mod/core.html b/docs/manual/mod/core.html index 4f0a3033cf6..6e4d5f0ced8 100644 --- a/docs/manual/mod/core.html +++ b/docs/manual/mod/core.html @@ -43,7 +43,9 @@ always available.
  • KeepAliveTimeout
  • <Limit>
  • Listen +
  • ListenBacklog
  • <Location> +
  • LockFile
  • MaxClients
  • MaxKeepAliveRequests
  • MaxRequestsPerChild @@ -658,6 +660,19 @@ directive.

    Known Bugs


    +

    ListenBacklog

    +Syntax: ListenBacklog backlog
    +Default: ListenBacklog 511
    +Context: server config
    +Status: Core
    +Compatibility: ListenBacklog is only available in Apache +versions after 1.2.0.

    + +The maximum length of the queue of pending connections. Generally no +tuning is needed or desired, however on some systems it is desirable +to increase this when under a TCP SYN flood attack. See +the backlog parameter to the listen(2) system call. +

    <Limit> directive

    Syntax: @@ -714,7 +729,7 @@ the <Location ~ "/(extra|special)/data"> -would match URLs that contained the substring "/extra/data" or +

    would match URLs that contained the substring "/extra/data" or "/special/data".

    The Location functionality is especially useful when @@ -732,7 +747,23 @@ from browsers at foo.com, you might use:


    -

    MaxClients directive

    +

    LockFile

    +Syntax: LockFile filename
    +Default: LockFile logs/accept.lock
    +Context: server config
    +Status: core

    + +The LockFile directive sets the path to the lockfile used when +Apache is compiled with either USE_FCNTL_SERIALIZED_ACCEPT or +USE_FLOCK_SERIALIZED_ACCEPT. This directive should normally be +left at its default value. The main reason for changing it is if +the logs directory is NFS mounted, since the lockfile +should be stored on a local disk if possible. The PID of the main +server process is automatically appended to the filename. + +


    + +

    MaxClients

    Syntax: MaxClients number
    Default: MaxClients 256
    @@ -1034,7 +1065,7 @@ sections; in fact it can now contain any server directive allowed in the See also AccessConfig.


    - +

    RLimitCPU directive

    Syntax: RLimitCPU # or 'max' [# or 'max']
    diff --git a/docs/manual/mod/directives.html b/docs/manual/mod/directives.html index 23599099c2b..1c31c7b1a27 100644 --- a/docs/manual/mod/directives.html +++ b/docs/manual/mod/directives.html @@ -103,9 +103,11 @@
  • LanguagePriority
  • <Limit>
  • Listen +
  • ListenBacklog
  • LoadFile
  • LoadModule
  • <Location> +
  • LockFile
  • LogFormat
  • MaxClients
  • MaxKeepAliveRequests -- 2.47.2