Apache Reference Manual (2)

AuthName directive
Syntax: AuthName auth-domain
Context: directory, .htaccess
Override: AuthConfig
Status: core
This directive sets the name of the authorization realm for a directory. This realm is given to the client so that the user knows which username and password to send. AuthName takes a single argument; if the realm name contains spaces, it must be enclosed in quotation marks. It must be accompanied by AuthType and require directives, and directives such as AuthUserFile and AuthGroupFile to work.
--------------------------------------------------------------------------------
AuthType directive
Syntax: AuthType type
Context: directory, .htaccess
Override: AuthConfig
Status: core
This directive selects the type of user authentication for a directory. Only Basic and Digest are currently implemented. It must be accompanied by AuthName and require directives, and directives such as AuthUserFile and AuthGroupFile to work.
--------------------------------------------------------------------------------
BindAddress directive
Syntax: BindAddress saddr
Default: BindAddress *
Context: server config
Status: core
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

时间: 2024-09-19 09:21:31

Apache Reference Manual (2)的相关文章

Apache Reference Manual (11)

ServerRoot directiveSyntax: ServerRoot directory-filenameDefault: ServerRoot /usr/local/apacheContext: server configStatus: coreThe ServerRoot directive sets the directory in which the server lives. Typically it will contain the subdirectories conf/

Apache Reference Manual (4)

<DirectoryMatch>Syntax: <DirectoryMatch regex> ... </DirectoryMatch> Context: server config, virtual hostStatus: Core.Compatibility: Available in Apache 1.3 and later <DirectoryMatch> and </DirectoryMatch> are used to enclose

Apache Reference Manual (9)

PidFile directiveSyntax: PidFile filenameDefault: PidFile logs/httpd.pidContext: server configStatus: coreThe PidFile directive sets the file to which the server records the process id of the daemon. If the filename does not begin with a slash (/) th

Apache Reference Manual (5)

<FilesMatch>Syntax: <FilesMatch regex> ... </FilesMatch>Context: server config, virtual host, .htaccessStatus: coreCompatibility: only available in Apache 1.3 and above.The <FilesMatch> directive provides for access control by file

Apache Reference Manual (1)

Apache Core FeaturesThese configuration parameters control the core Apache features, and are always available.AccessConfig directiveSyntax: AccessConfig filenameDefault: AccessConfig conf/access.confContext: server config, virtual hostStatus: coreThe

Apache Reference Manual (3)

ContentDigest directiveSyntax: ContentDigest on|offDefault: ContentDigest offContext: server config, virtual host, directory, .htaccessOverride: OptionsStatus: experimentalCompatibility: ContentDigest is only available in Apache 1.1 and laterThis dir

Apache Reference Manual (8)

MaxRequestsPerChild directiveSyntax: MaxRequestsPerChild numberDefault: MaxRequestsPerChild 0Context: server configStatus: coreThe MaxRequestsPerChild directive sets the limit on the number of requests that an individual child server process will han

Apache Reference Manual (6)

KeepAliveTimeout directiveSyntax: KeepAliveTimeout secondsDefault: KeepAliveTimeout 15Context: server configStatus: CoreCompatibility: KeepAliveTimeout is only available in Apache 1.1 and later.The number of seconds Apache will wait for a subsequent

Apache Reference Manual (10)

Satisfy directiveSyntax: Satisfy 'any' or 'all'Default: Satisfy allContext: directory, .htaccessStatus: coreCompatibility: Satisfy is only available in Apache 1.2 and laterAccess policy if both allow and require used. The parameter can be either 'all