From: Joshua Slive Date: Thu, 2 May 2002 14:37:13 +0000 (+0000) Subject: Update transformations. X-Git-Tag: 2.0.37~533 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1323bf7d5676025bcd80a20d7db80d2b1b1ccff0;p=apache Update transformations. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94904 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/core.html b/docs/manual/mod/core.html index 79d3b8a1b7..d644066c0b 100644 --- a/docs/manual/mod/core.html +++ b/docs/manual/mod/core.html @@ -942,10 +942,10 @@ URLsSyntax:< all, it should be emphasized that <Location> operates completely outside the filesystem.

-

For all origin (non-proxy) requests, the URL to be matched - is of the form /path/, and you should not include - any http://servername prefix. For proxy requests, - the URL to be matched is of the form +

For all origin (non-proxy) requests, the URL to be matched is a + URL-path of the form /path/. No scheme, hostname, + port, or query string may be included. For proxy requests, the + URL to be matched is of the form scheme://servername/path, and you must include the prefix.

diff --git a/docs/manual/mod/index.html b/docs/manual/mod/index.html index 4b8e1418e6..036128df62 100644 --- a/docs/manual/mod/index.html +++ b/docs/manual/mod/index.html @@ -1,4 +1,4 @@ -Module Index - Apache HTTP Server
[APACHE DOCUMENTATION]

Apache HTTP Server Version 2.0

Module Index

+Module Index - Apache HTTP Server
[APACHE DOCUMENTATION]

Apache HTTP Server Version 2.0

Module Index

Below is a list of all of the modules that come as part of the Apache distribution. See also the complete @@ -52,4 +52,4 @@ directories

mod_usertrack
This module uses cookies to provide for a clickstream log of user activity on a site.
mod_vhost_alias
Provides for dynamically configured mass virtual -hosting

Apache HTTP Server Version 2.0

IndexHome \ No newline at end of file +hosting

Apache HTTP Server Version 2.0

IndexHome \ No newline at end of file diff --git a/docs/manual/mod/mod_cache.html b/docs/manual/mod/mod_cache.html index a58584a709..f34b9df15c 100644 --- a/docs/manual/mod/mod_cache.html +++ b/docs/manual/mod/mod_cache.html @@ -2,7 +2,7 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX This file is generated from xml source: DO NOT EDIT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX --->mod_cache - Apache HTTP Server
[APACHE DOCUMENTATION]

Apache HTTP Server Version 2.0

Apache Module mod_cache

Description:Content cache keyed to URIs
Status:Experimental
Module Identifier:cache_module

Summary

+-->mod_cache - Apache HTTP Server
[APACHE DOCUMENTATION]

Apache HTTP Server Version 2.0

Apache Module mod_cache

Description:Content cache keyed to URIs
Status:Experimental
Module Identifier:cache_module

Summary

This module is experimental. Documentation is still under development... @@ -23,47 +23,47 @@ This module is experimental. Documentation is still under development...

Sample httpd.conf

-#
-# Sample Cache Configuration
-#
-LoadModule cache_module modules/mod_cache.so
-<IfModule mod_cache.c>
- CacheOn On
-

- #LoadModule disk_cache_module modules/mod_disk_cache.so
- <IfModule mod_disk_cache.c>
- CacheRoot c:/cacheroot
- CacheEnable disk /
- CacheDirLevels 5
- CacheDirLength 3
- </IfModule>
-

- LoadModule mem_cache_module modules/mod_mem_cache.so
- <IfModule mod_mem_cache.c>
- CacheEnable mem /
- CacheSize 4096
- CacheMaxObjectCount 100
- CacheMinObjectSize 1
- CacheMaxObjectSize 2048
- </IfModule>
-

-</IfModule>
+#
+# Sample Cache Configuration
+#
+LoadModule cache_module modules/mod_cache.so
+<IfModule mod_cache.c>
+ CacheOn On
+

+ #LoadModule disk_cache_module modules/mod_disk_cache.so
+ <IfModule mod_disk_cache.c>
+ CacheRoot c:/cacheroot
+ CacheEnable disk /
+ CacheDirLevels 5
+ CacheDirLength 3
+ </IfModule>
+

+ LoadModule mem_cache_module modules/mod_mem_cache.so
+ <IfModule mod_mem_cache.c>
+ CacheEnable mem /
+ CacheSize 4096
+ CacheMaxObjectCount 100
+ CacheMinObjectSize 1
+ CacheMaxObjectSize 2048
+ </IfModule>
+

+</IfModule>

-

CacheDefaultExpire Directive

Description:
Syntax:
Context:server config
Status:Experimental
Module:mod_cache
+

CacheDefaultExpire Directive

Description:
Syntax:
Context:server config
Status:Experimental
Module:mod_cache

The default time in seconds to cache a document.

CacheDefaultExpire 86400
-

CacheDisable Directive

Description: Disable caching of specified URLs by specified storage manager
Syntax:CacheDisable cache_type url-string
Context:server config
Status:Experimental
Module:mod_cache
+

CacheDisable Directive

Description: Disable caching of specified URLs by specified storage manager
Syntax:CacheDisable cache_type url-string
Context:server config
Status:Experimental
Module:mod_cache

The CacheDisable directive instructs mod_cache to not cache urls at or above url-string.

Example

CacheDisable disk /local_files
-

CacheEnable Directive

Description: Enable caching specified URLs in a specified storage manager
Syntax:CacheEnable cache_type url-string
Context:server config
Status:Experimental
Module:mod_cache
+

CacheEnable Directive

Description: Enable caching specified URLs in a specified storage manager
Syntax:CacheEnable cache_type url-string
Context:server config
Status:Experimental
Module:mod_cache

The CacheEnable directive instructs mod_cache to cache urls at or below url-string. The cache store is specified with the cache_type argument. @@ -73,33 +73,33 @@ LoadModule cache_module modules/mod_cache.so
cache storage manager implemented by mod_disk_cache .

- CacheEnable disk /
+ CacheEnable disk /
CacheEnable mem /manual
-

CacheIgnoreCacheControl Directive

Description: Ignore requests from the client for uncached content
Syntax:
Context:server config
Status:Experimental
Module:mod_cache
+

CacheIgnoreCacheControl Directive

Description: Ignore requests from the client for uncached content
Syntax:
Context:server config
Status:Experimental
Module:mod_cache

Ignore requests from the client for uncached content

CacheIgnoreNoLastMod
-

CacheIgnoreNoLastMod Directive

Description: Ignore responses where there is no Last Modified Header
Syntax:
Context:server config
Status:Experimental
Module:mod_cache
+

CacheIgnoreNoLastMod Directive

Description: Ignore responses where there is no Last Modified Header
Syntax:
Context:server config
Status:Experimental
Module:mod_cache

Ignore responses where there is no Last Modified Header

CacheIgnoreNoLastMod
-

CacheLastModifiedFactor Directive

Description: The factor used to estimate the Expires date from the LastModified date
Syntax:
Context:server config
Status:Experimental
Module:mod_cache
+

CacheLastModifiedFactor Directive

Description: The factor used to estimate the Expires date from the LastModified date
Syntax:
Context:server config
Status:Experimental
Module:mod_cache

The factor used to estimate the Expires date from the LastModified date.

CacheLastModifiedFactor
-

CacheMaxExpire Directive

Description: The maximum time in seconds to cache a document
Syntax:
Context:server config
Status:Experimental
Module:mod_cache
+

CacheMaxExpire Directive

Description: The maximum time in seconds to cache a document
Syntax:
Context:server config
Status:Experimental
Module:mod_cache

The maximum time in seconds to cache a document.

CacheMaxExpire 604800
-

CacheOn Directive

Description:
Syntax:CacheOn
Context:server config
Status:Experimental
Module:mod_cache
+

CacheOn Directive

Description:
Syntax:CacheOn
Context:server config
Status:Experimental
Module:mod_cache

@@ -107,4 +107,4 @@ LoadModule cache_module modules/mod_cache.so
CacheOn
-

Apache HTTP Server Version 2.0

IndexHome \ No newline at end of file +

Apache HTTP Server Version 2.0

IndexHome \ No newline at end of file diff --git a/docs/manual/mod/mod_cgi.html b/docs/manual/mod/mod_cgi.html index 7d0b723515..26f5c70a17 100644 --- a/docs/manual/mod/mod_cgi.html +++ b/docs/manual/mod/mod_cgi.html @@ -143,4 +143,4 @@ in the scriptlog
Apache HTTP Server Version 2.0IndexHome +

Apache HTTP Server Version 2.0

IndexHome \ No newline at end of file diff --git a/docs/manual/mod/mod_negotiation.html b/docs/manual/mod/mod_negotiation.html index ca5c5aeb0d..145a8736ee 100644 --- a/docs/manual/mod/mod_negotiation.html +++ b/docs/manual/mod/mod_negotiation.html @@ -175,4 +175,4 @@ the client does not express a preference
ForceLanguagePriority directive is not None. Correctly implemented HTTP/1.1 requests will mean this directive has no effect.

-

Apache HTTP Server Version 2.0

IndexHome +

Apache HTTP Server Version 2.0

IndexHome \ No newline at end of file diff --git a/docs/manual/mod/worker.html b/docs/manual/mod/worker.html index 00a9551dbe..213858fbd7 100644 --- a/docs/manual/mod/worker.html +++ b/docs/manual/mod/worker.html @@ -2,8 +2,8 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX This file is generated from xml source: DO NOT EDIT XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX --->worker - Apache HTTP Server
[APACHE DOCUMENTATION]

Apache HTTP Server Version 2.0

Apache Module worker

Description:Multi-Processing Module implementing a hybrid - multi-threaded multi-process web server
Status:MPM
Module Identifier:mpm_worker_module

Summary

+-->worker - Apache HTTP Server
[APACHE DOCUMENTATION]

Apache HTTP Server Version 2.0

Apache Module worker

Description:Multi-Processing Module implementing a hybrid + multi-threaded multi-process web server
Status:MPM
Module Identifier:mpm_worker_module

Summary

This Multi-Processing Module (MPM) implements a hybrid multi-process multi-threaded server. Each process has a fixed number of threads. The server adjusts to handle load by @@ -46,4 +46,4 @@ XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

See also: Setting which addresses and ports Apache uses.

-

Directives


Apache HTTP Server Version 2.0

IndexHome
\ No newline at end of file +

Directives


Apache HTTP Server Version 2.0

IndexHome
\ No newline at end of file