From: Joshua Slive Date: Wed, 14 Aug 2002 18:56:00 +0000 (+0000) Subject: Updating some html transformations. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=03d9850c759cf10d4dda8c7a5ab1d91041b98326;p=apache Updating some html transformations. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96375 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/directives.html.en b/docs/manual/mod/directives.html.en index 44df7022a5..cf86be5da1 100644 --- a/docs/manual/mod/directives.html.en +++ b/docs/manual/mod/directives.html.en @@ -9,4 +9,4 @@ consistent format, and there is a dictionary of the terms used in their descriptions available.

-

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_actions.html.en b/docs/manual/mod/mod_actions.html.en index 4045b3365d..dc91be6ccb 100644 --- a/docs/manual/mod/mod_actions.html.en +++ b/docs/manual/mod/mod_actions.html.en @@ -24,7 +24,7 @@ content-typeScriptAliase or AddHandler. The + that has been designated as a CGI script using ScriptAlias or AddHandler. The action-type can be either a handler or a MIME content type. It sends the URL and file path of the requested document using the standard CGI PATH_INFO and PATH_TRANSLATED environment diff --git a/docs/manual/mod/mod_cache.html.en b/docs/manual/mod/mod_cache.html.en index 1a0f12d38c..5a8059006c 100644 --- a/docs/manual/mod/mod_cache.html.en +++ b/docs/manual/mod/mod_cache.html.en @@ -3,7 +3,7 @@ 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: + Content cache keyed to URIs.
Status: Experimental
Module Identifier: cache_module

Summary

@@ -16,18 +16,20 @@ This module is experimental. Documentation is still under development... management modules. Two storage management modules are included in the base Apache distribution:

-
mod_disk_cache
-
implements a disk based storage manager for use with mod_proxy
-
mod_mem_cache
+
mod_disk_cache
+
implements a disk based storage manager for use with mod_proxy
+
mod_mem_cache
implements an in-memory based storage manager. mod_mem_cache can be configured to operate in two modes: caching open file - descriptors or caching objects in heap storage. mod_mem_cache + descriptors or caching objects in heap storage. mod_mem_cache is most useful when used to cache locally generated content or to cache backend server content for mod_proxy configured for ProxyPass (aka reverse proxy)

Content stored and retrived keyed to the URL. Content with access protections is not cached.

-

Directives

Sample Configuration

+ +
Related Modules

mod_disk_cache
mod_mem_cache
Related Directives

CacheRoot
CacheSize
CacheGcInterval
CacheDirLevels
CacheDirLength
CacheExpiryCheck
CacheMinFileSize
CacheMaxFileSize
CacheTimeMargin
CacheGcDaily
CacheGcUnused
CacheGcClean
CacheGcMemUsage
MCacheSize
MCacheMaxObjectCount
MCacheMinObjectSize
MCacheMaxObjectSize
MCacheRemovalAlgorithm
+

Directives

Sample Configuration

Sample httpd.conf

@@ -41,7 +43,7 @@ LoadModule cache_module modules/mod_cache.so
#LoadModule disk_cache_module modules/mod_disk_cache.so
<IfModule mod_disk_cache.c>
CacheRoot c:/cacheroot
- CacheSize + CacheSize 256
CacheEnable disk /
CacheDirLevels 5
CacheDirLength 3
@@ -62,11 +64,13 @@ LoadModule cache_module modules/mod_cache.so

CacheDefaultExpire Directive

Description:
Syntax: -
Context: + CacheDefaultExpire seconds
Default: + CacheDefaultExpire 3600 (one hour)
Context: server config
Status: Experimental
Module: mod_cache
-

The default time in seconds to cache a document.

+

The default time in seconds to cache a document if the page does not have + an expiry date in the Expires field.

CacheDefaultExpire 86400
@@ -101,9 +105,39 @@ LoadModule cache_module modules/mod_cache.so
CacheEnable mem /manual
CacheEnable fd /images
+

CacheForceCompletion Directive

Description: + Percentage of download to arrive for the cache to force complete transfert
Syntax: + CacheLastModifiedFactor Percentage
Default: + CacheLastModifiedFactor 60
Context: + server config
Status: + Experimental
Module: + mod_cache
+

Percentage of download to arrive for the cache to force complete transfert.

+ +
+ CacheForceCompletion +
+
+This feature is currently not implemented. +
+

CacheForceCompletion Directive

Description: + Percentage of download to arrive for the cache to force complete transfert
Syntax: + CacheLastModifiedFactor Percentage
Default: + CacheLastModifiedFactor 60
Context: + server config
Status: + Experimental
Module: + mod_cache
+

Percentage of download to arrive for the cache to force complete transfert.

+ +
+ CacheForceCompletion +
+
+This feature is currently not implemented. +

CacheIgnoreCacheControl Directive

Description: Ignore requests from the client for uncached content
Syntax: -
Context: + CacheIgnoreCacheControl
Context: server config
Status: Experimental
Module: mod_cache
@@ -114,7 +148,7 @@ LoadModule cache_module modules/mod_cache.so

CacheIgnoreNoLastMod Directive

Description: Ignore responses where there is no Last Modified Header
Syntax: -
Context: + CacheIgnoreNoLastMod
Context: server config
Status: Experimental
Module: mod_cache
@@ -125,7 +159,8 @@ LoadModule cache_module modules/mod_cache.so

CacheLastModifiedFactor Directive

Description: The factor used to estimate the Expires date from the LastModified date
Syntax: -
Context: + CacheLastModifiedFactor float
Default: + CacheLastModifiedFactor 0.1
Context: server config
Status: Experimental
Module: mod_cache
@@ -136,11 +171,13 @@ LoadModule cache_module modules/mod_cache.so

CacheMaxExpire Directive

Description: The maximum time in seconds to cache a document
Syntax: -
Context: + CacheMaxExpire seconds
Default: + CacheMaxExpire 86400 (one day)
Context: server config
Status: Experimental
Module: mod_cache
-

The maximum time in seconds to cache a document.

+

The maximum time in seconds to cache a document. The CacheMaxExpire + takes precedence over the Expire field from the header.

CacheMaxExpire 604800
diff --git a/docs/manual/mod/mod_deflate.html.en b/docs/manual/mod/mod_deflate.html.en index 517e377e8c..e2eb6d3ec3 100644 --- a/docs/manual/mod/mod_deflate.html.en +++ b/docs/manual/mod/mod_deflate.html.en @@ -17,9 +17,13 @@ filter. The following directive will enable compression for documents in the container where it is placed:

-

Most popular browsers can not handle compression of all content - so you may want to enable the 'gzip-only-text/html' note (see below) -

+ +

Most popular browsers can not handle compression of all content + so you may want to set the 'gzip-only-text/html' note to 1 to only + allow html files to be compressed (see below)

+

if you set this to anything but '1' it will be ignored, so you can do + negative matches

+
SetEnv gzip-only-text/html 1
SetOutputFilter DEFLATE diff --git a/docs/manual/mod/mod_ssl.html.en b/docs/manual/mod/mod_ssl.html.en index a7770379d8..03f4c2f93c 100644 --- a/docs/manual/mod/mod_ssl.html.en +++ b/docs/manual/mod/mod_ssl.html.en @@ -788,7 +788,7 @@ SSLProxyEngine on
Extension
Module: mod_ssl

-This directive sets the directory where you keep the certificates of +This directive sets the all-in-one file where you keep the certificates of Certification Authorities (CAs) whose proxy client certificates are used for authentication of the proxy server to remote servers.

diff --git a/docs/manual/upgrading.html.en b/docs/manual/upgrading.html.en index aa454ab013..8528ccdb8f 100644 --- a/docs/manual/upgrading.html.en +++ b/docs/manual/upgrading.html.en @@ -1,33 +1,19 @@ - - - - - - - Upgrading to 2.0 from 1.3 - - - - - - -

Upgrading to 2.0 from 1.3

- -

In order to assist folks upgrading, we maintain a document - describing information critical to existing Apache users. These - are intended to be brief notes, and you should be able to find - more information in either the New Features document, or in - the src/CHANGES file.

- -

Compile-Time Configuration Changes

+Upgrading to 2.0 from 1.3 - Apache HTTP Server
[APACHE DOCUMENTATION]

Apache HTTP Server Version 2.0

Upgrading to 2.0 from 1.3

+

In order to assist folks upgrading, we maintain a document + describing information critical to existing Apache users. These + are intended to be brief notes, and you should be able to find + more information in either the New Features document, or in + the src/CHANGES file.

+

Compile-Time Configuration Changes

+ - -

Run-Time Configuration Changes

+

Run-Time Configuration Changes

+
  • Many directives that were in the core server in Apache 1.3 are now in the MPMs. If you wish the behavior of the server to be as similar as possible to the behavior of Apache - 1.3, you should select the prefork MPM. Other MPMs will have + 1.3, you should select the prefork MPM. Other MPMs will have different directives to control process creation and request processing.
  • @@ -57,30 +42,30 @@ the true filename) has changed for some modules. Modules that were previously implemented as a handler but are now implemented as a filter may no longer accept requests with - PATH_INFO. Filters such as INCLUDES are implemented on top + PATH_INFO. Filters such as INCLUDES are implemented on top of the core handler, and therefore reject requests with - PATH_INFO. You can use the AcceptPathInfo directive to + PATH_INFO. You can use the AcceptPathInfo directive to force the core handler to accept requests with PATH_INFO and - thereby restore the ability to use PATH_INFO in server-side + thereby restore the ability to use PATH_INFO in server-side includes. -
  • The CacheNegotiatedDocs directive now takes - the argument on or off. Existing - instances of CacheNegotiatedDocs should be - replaced with CacheNegotiatedDocs on.
  • +
  • The CacheNegotiatedDocs + directive now takes the argument on or + off. Existing instances of + CacheNegotiatedDocs should be replaced with + CacheNegotiatedDocs on.
  • - The ErrorDocument directive no longer uses a - quote at the beginning of the argument to indicate a text - message. Instead, you should enclose the message in double - quotes. For example, existing instances of + The ErrorDocument + directive no longer uses a quote at the beginning of the + argument to indicate a text message. Instead, you should + enclose the message in double quotes. For example, existing + instances of
    ErrorDocument 403 "Some Message
    - should be replaced with + should be replaced with
    ErrorDocument 403 "Some Message" @@ -92,7 +77,7 @@
  • The AccessConfig and ResourceConfig directives no longer exist. Existing instances of these directives can be replaced with - the Include + the Include directive which has equivalent functionality. If you were making use of the default values of these directives without including them in the configuration files, you may need to @@ -104,16 +89,16 @@ of httpd.conf, with the one for srm.conf preceding the one for access.conf.
  • -
  • The BindAddress and Port - directives no longer exist. Equivalent functionality is - provided with the more flexible - Listen +
  • The BindAddress and Port + directives no longer exist. Equivalent functionality is + provided with the more flexible + Listen directive.
  • -
  • Another use of the Port +
  • Another use of the Port directive in Apache-1.3 was setting the port number to be used in self-referential URL's. The Apache-2.0 equivalent is - the new ServerName + the new ServerName syntax: it has been changed to allow specifying both the hostname and the port number for self-referential URL's in one directive.
  • @@ -126,8 +111,8 @@
  • The mod_log_agent and mod_log_referer modules which provided the AgentLog, RefererLog and RefererIgnore directives have been removed. - Agent and referer logs are still available using the CustomLog + Agent and referer logs are still available using the + CustomLog directive of mod_log_config.
  • The AddModule and @@ -139,13 +124,11 @@
  • The FancyIndexing directive has been removed. The same functionality is available through the - FancyIndexing option to the IndexOptions + FancyIndexing option to the IndexOptions directive.
  • -
- -

Misc Changes

+

Misc Changes

+
  • The httpd command line option @@ -166,15 +149,12 @@ compiled server should be directed to a separate directory.
- -

Third Party Modules

+

Third Party Modules

+

Extensive changes were made to the server API in Apache 2.0. Existing modules designed for the Apache 1.3 API will not work in Apache 2.0 without modification. Details are provided in the developer documentation.

- - - - +

Apache HTTP Server Version 2.0

IndexHome \ No newline at end of file