From: Joshua Slive Date: Mon, 20 Nov 2000 01:21:59 +0000 (+0000) Subject: Clean up core.html a little. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7fbe62ec9d1a27bdf2db417f2501a5b09b550ec4;p=apache Clean up core.html a little. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87033 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/core.html b/docs/manual/mod/core.html index 194dc4a364..cb2d1f1ed7 100644 --- a/docs/manual/mod/core.html +++ b/docs/manual/mod/core.html @@ -21,15 +21,12 @@ always available.

Directives


-

AccessConfig directive

- -Syntax: AccessConfig filename
-Default: AccessConfig conf/access.conf
-Context: server config, virtual host
-Status: core
-Compatibility: Removed in version 2.0.

- -The server will read this file for more directives after reading the -ResourceConfig file. Filename is -relative to the ServerRoot. -This feature can be disabled using: -

AccessConfig /dev/null
-Historically, this file only contained -<Directory> sections; in fact it can now -contain any server directive allowed in the server config context. -


-

AccessFileName directive

AuthName and AuthUserFile and AuthGroupFile to work.


-

BindAddress directive

- -Syntax: BindAddress saddr
-Default: BindAddress *
-Context: server config
-Status: core
-Compatibility: Moved in version 2.0 to the -MPMs.

- -A Unix® http server can either listen for connections to every -IP address of the server machine, or just one IP address of the server -machine. Saddr can be - -

-
  • * -
  • An IP address -
  • A fully-qualified Internet domain name -
  • -If the value is *, then the server will listen for connections on -every IP address, otherwise it will only listen on the IP address -specified.

    - -Only one BindAddress directive can be used. For more -control over which address and ports Apache listens to, use the -Listen directive instead of -BindAddress.

    - -BindAddress can be used as an alternative method for -supporting virtual hosts using -multiple independent servers, instead of using <VirtualHost> sections. - -

    See Also: -DNS Issues
    -See Also: -Setting which addresses and ports Apache uses

    - -
    - -

    BS2000Account directive

    - -Syntax: BS2000Account account
    -Default: none
    -Context: server config
    -Status: core
    -Compatibility: BS2000Account is only available for -BS2000 machines, as of Apache 1.3 and later.

    - -The BS2000Account directive is available for BS2000 hosts -only. It must be used to define the account number for the non-privileged -apache server user (which was configured using the -User directive). -This is required by the BS2000 POSIX subsystem (to change the underlying -BS2000 task environment by performing a sub-LOGON) to prevent CGI scripts -from accessing resources of the privileged account which started the -server, usually SYSROOT.
    -Only one BS2000Account directive can be used.

    - -

    See Also: -Apache EBCDIC port

    - -
    -

    ClearModuleList directive


    + +

    LimitXMLRequestBody directive

    +Syntax: LimitXMLRequestBody number
    +Default: LimitXMLRequestBody 1000000
    +Context: server config
    +Status: core
    + +

    Limit (in bytes) on maximum size of an XML-based request body.

    + +


    +

    <Location> directive

    <Limit> section

    See also Satisfy and mod_access.


    -

    ResourceConfig directive

    - -Syntax: ResourceConfig filename
    -Default: ResourceConfig conf/srm.conf
    -Context: server config, virtual host
    -Status: core
    -Compatibility: Removed in version 2.0.

    - -The server will read this file for more directives after reading the -httpd.conf file. Filename is relative to the -ServerRoot. -This feature can be disabled using: -

    ResourceConfig /dev/null
    -Historically, this file contained most directives except for server -configuration directives and <Directory> -sections; in fact it can now contain any server directive allowed in the -server config context.

    - -See also AccessConfig.


    -

    RLimitCPU directive


    -

    ThreadStackSize

    -Syntax: ThreadStackSize number
    -Default: ThreadStackSize 65536
    -Context: server config
    -Status: core (NetWare)
    -Compatibility: Available only with Apache 1.3 and later -with NetWare. Moved in version 2.0 to the MPMs. - -

    This directive tells the server what stack size to use for each of the - running threads. If you ever get a stack overflow you will need to bump - this number to a higher setting. - -

    This directive has no effect on other systems. -


    -

    TimeOut directive