From: Graham Leggett Date: Sat, 12 Mar 2011 01:20:18 +0000 (+0000) Subject: Update transformations. X-Git-Tag: 2.3.12~250 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b7da07815ec773f2669b71599b8a42229a497a66;p=apache Update transformations. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1080835 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_cache.html.en b/docs/manual/mod/mod_cache.html.en index 5439e57f2d..594c58b8ce 100644 --- a/docs/manual/mod/mod_cache.html.en +++ b/docs/manual/mod/mod_cache.html.en @@ -414,7 +414,7 @@ - +
Description:Disable caching of specified URLs
Syntax:CacheDisable url-string | on
Context:server config, virtual host
Context:server config, virtual host, directory, .htaccess
Status:Extension
Module:mod_cache
@@ -432,11 +432,13 @@

Example

<Location /foo>
+ CacheDisable on
+
</Location>

-

The no-cache environment variable can be set to +

The no-cache environment variable can be set to disable caching on a finer grained set of resources in versions 2.2.12 and later.

@@ -451,17 +453,19 @@ - - + +
Description:Enable caching of specified URLs using a specified storage manager
Syntax:CacheEnable cache_type url-string
Context:server config, virtual host
Syntax:CacheEnable cache_type [url-string]
Context:server config, virtual host, directory, .htaccess
Status:Extension
Module:mod_cache

The CacheEnable directive instructs mod_cache to cache urls at or below url-string. The cache storage manager is specified with the - cache_type argument. If the CacheEnable - directive is placed inside a <Location> - directive, the url-string becomes optional. + cache_type argument. The CacheEnable + directive can alternatively be placed inside either + <Location> or + <LocationMatch> sections to indicate + the content is cacheable. cache_type disk instructs mod_cache to use the disk based storage manager implemented by mod_cache_disk.

@@ -470,13 +474,28 @@ manager each possible storage manager will be run until the first one that actually processes the request. The order in which the storage managers are run is determined by the order of the CacheEnable - directives in the configuration file.

+ directives in the configuration file. CacheEnable + directives within <Location> or + <LocationMatch> sections are processed + before globally defined CacheEnable directives.

When acting as a forward proxy server, url-string can also be used to specify remote sites and proxy protocols which caching should be enabled for.

- +

+ # Cache content
+ <Location /foo>
+ + CacheEnable disk
+
+ </Location>

+ # Cache regex
+ <LocationMatch foo$>
+ + CacheEnable disk
+
+ </LocationMatch>

# Cache proxied url's
CacheEnable disk /

# Cache FTP-proxied url's
diff --git a/docs/manual/mod/quickreference.html.de b/docs/manual/mod/quickreference.html.de index 1005dcc75b..ac1d9796b9 100644 --- a/docs/manual/mod/quickreference.html.de +++ b/docs/manual/mod/quickreference.html.de @@ -261,8 +261,8 @@ respect to case CacheDirLength length 2 svEThe number of characters in subdirectory names CacheDirLevels levels 2 svEThe number of levels of subdirectories in the cache. -CacheDisable url-string | onsvEDisable caching of specified URLs -CacheEnable cache_type url-stringsvEEnable caching of specified URLs using a specified storage +CacheDisable url-string | onsvdhEDisable caching of specified URLs +CacheEnable cache_type [url-string]svdhEEnable caching of specified URLs using a specified storage manager CacheFile file-path [file-path] ...sXCache a list of file handles at startup time CacheHeader on|off off svdhEAdd an X-Cache header to the response. diff --git a/docs/manual/mod/quickreference.html.en b/docs/manual/mod/quickreference.html.en index 27e7d5422c..ac922f0b2b 100644 --- a/docs/manual/mod/quickreference.html.en +++ b/docs/manual/mod/quickreference.html.en @@ -254,8 +254,8 @@ respect to case CacheDirLength length 2 svEThe number of characters in subdirectory names CacheDirLevels levels 2 svEThe number of levels of subdirectories in the cache. -CacheDisable url-string | onsvEDisable caching of specified URLs -CacheEnable cache_type url-stringsvEEnable caching of specified URLs using a specified storage +CacheDisable url-string | onsvdhEDisable caching of specified URLs +CacheEnable cache_type [url-string]svdhEEnable caching of specified URLs using a specified storage manager CacheFile file-path [file-path] ...sXCache a list of file handles at startup time CacheHeader on|off off svdhEAdd an X-Cache header to the response. diff --git a/docs/manual/mod/quickreference.html.es b/docs/manual/mod/quickreference.html.es index 764a6c4feb..90809d5aa1 100644 --- a/docs/manual/mod/quickreference.html.es +++ b/docs/manual/mod/quickreference.html.es @@ -261,8 +261,8 @@ respect to case CacheDirLength length 2 svEThe number of characters in subdirectory names CacheDirLevels levels 2 svEThe number of levels of subdirectories in the cache. -CacheDisable url-string | onsvEDisable caching of specified URLs -CacheEnable cache_type url-stringsvEEnable caching of specified URLs using a specified storage +CacheDisable url-string | onsvdhEDisable caching of specified URLs +CacheEnable cache_type [url-string]svdhEEnable caching of specified URLs using a specified storage manager CacheFile file-path [file-path] ...sXCache a list of file handles at startup time CacheHeader on|off off svdhEAdd an X-Cache header to the response. diff --git a/docs/manual/mod/quickreference.html.tr.utf8 b/docs/manual/mod/quickreference.html.tr.utf8 index cb5fc69a8b..8b6868489a 100644 --- a/docs/manual/mod/quickreference.html.tr.utf8 +++ b/docs/manual/mod/quickreference.html.tr.utf8 @@ -252,8 +252,8 @@ duyarsız eşleşmelerine bağlı olarak belirler. CacheDirLength length 2 skEThe number of characters in subdirectory names CacheDirLevels levels 2 skEThe number of levels of subdirectories in the cache. -CacheDisable url-string | onskEDisable caching of specified URLs -CacheEnable cache_type url-stringskEEnable caching of specified URLs using a specified storage +CacheDisable url-string | onskdhEDisable caching of specified URLs +CacheEnable cache_type [url-string]skdhEEnable caching of specified URLs using a specified storage manager CacheFile file-path [file-path] ...sDCache a list of file handles at startup time CacheHeader on|off off skdhEAdd an X-Cache header to the response. diff --git a/docs/manual/mod/quickreference.html.zh-cn b/docs/manual/mod/quickreference.html.zh-cn index fc840267fd..d452adc198 100644 --- a/docs/manual/mod/quickreference.html.zh-cn +++ b/docs/manual/mod/quickreference.html.zh-cn @@ -248,8 +248,8 @@ respect to case CacheDirLength length 2 svEThe number of characters in subdirectory names CacheDirLevels levels 2 svEThe number of levels of subdirectories in the cache. -CacheDisable url-string | onsvEDisable caching of specified URLs -CacheEnable cache_type url-stringsvEEnable caching of specified URLs using a specified storage +CacheDisable url-string | onsvdhEDisable caching of specified URLs +CacheEnable cache_type [url-string]svdhEEnable caching of specified URLs using a specified storage manager CacheFile file-path [file-path] ...sXCache a list of file handles at startup time CacheHeader on|off off svdhEAdd an X-Cache header to the response. diff --git a/docs/manual/new_features_2_4.html.fr b/docs/manual/new_features_2_4.html.fr index 2b82fc4cf2..5a1b678de5 100644 --- a/docs/manual/new_features_2_4.html.fr +++ b/docs/manual/new_features_2_4.html.fr @@ -31,6 +31,7 @@ serveur HTTP Apache de la version 2.2.

top
+
+

Nouveau modules

+ +
+
mod_allowmethods
+
Nouveau module permettant de restreindre l'utilisation de + certaines méthodes HTTP sans interférer avec l'authentification et + l'autorisation.
+ +
mod_buffer
+
Fournit un tampon pour les piles des filtres en entrée et en + sortie.
+ +
mod_lua
+
Embarque le langage Lua dans + httpd pour la configuration et les fonctions logiques courantes.
+ +
mod_proxy_fcgi
+
Mise à disposition du protocole FastCGI pour + mod_proxy.
+ +
mod_proxy_scgi
+
Mise à disposition du protocole SCGI pour + mod_proxy.
+ +
mod_ratelimit
+
Permet de limiter le taux de bande passante pour certains + clients.
+ +
mod_reflector
+
Permet de renvoyer comme réponse le corps de la requête via la + pile du filtre de sortie.
+ +
mod_remoteip
+
Remplace l'adresse IP distante et le nom d'hôte apparents du + client pour la requête courante par la liste d'adresses IP + présentée par un mandataire ou un répartiteur de charge via les + en-têtes de la requête.
+ +
mod_reqtimeout
+
Définit le délai d'expiration et le taux de données minimum + pour la réception des requêtes.
+ +
mod_request
+
Fournit des filtres permettant de gérer et de mettre à + disposition les corps des requêtes HTTP.
+ +
mod_slotmem_shm
+
Met à disposition un fournisseur de mémoire partagée à base de + slots (du style tableau de bord).
+
top
@@ -82,11 +144,6 @@ serveur HTTP Apache que celui-ci partage les données de session SSL entre les serveurs via memcached. -
mod_lua
- -
Embarque le langage Lua dans - httpd, pour la configuration et des fonctions logiques simples.
-
mod_proxy
La directive ProxyPass est maintenant configurée @@ -94,9 +151,18 @@ serveur HTTP Apache performances important par rapport à la syntaxe traditionnelle à deux paramètres lorsqu'elle est présente en grand nombre.
-
mod_proxy_fcgi
+
mod_proxy_balancer
+ +
D'avantage de possibilités de modifier la configuration à + l'exécution des membres de groupes de répartition de charge via le + gestionnaire de répartition de charge.
-
Support du protocole FastCGI pour mod_proxy
+
Le gestionnaire de répartition de charge permet d'ajouter des + membres de groupes de répartition de charge supplémentaires à + l'exécution.
+ +
Configuration à l'exécution d'un sous-ensemble de paramètres + de répartition de charge.
mod_cache
@@ -119,10 +185,6 @@ serveur HTTP Apache
mod_cache peut maintenant insérer HIT/MISS/REVALIDATE dans un en-tête X-Cache.
-
mod_allowmethods
-
Nouveau module permettant de restreindre certaines méthodes - HTTP sans interférer avec l'authentification et l'autorisation.
-
mod_include
Support de l'attribut 'onerror' dans un élément 'include', permettant de servir un message d'erreur personnalisé à la place diff --git a/docs/manual/rewrite/flags.html.en b/docs/manual/rewrite/flags.html.en index 71f83b873a..945ce8a6d3 100644 --- a/docs/manual/rewrite/flags.html.en +++ b/docs/manual/rewrite/flags.html.en @@ -240,7 +240,7 @@ empty value.

[E=!VAR]

-

allows to unset a previouslz set environment variable named +

allows to unset a previously set environment variable named VAR.

Environment variables can then be used in a variety of diff --git a/docs/manual/sitemap.html.fr b/docs/manual/sitemap.html.fr index 29a650efb6..57c5acd877 100644 --- a/docs/manual/sitemap.html.fr +++ b/docs/manual/sitemap.html.fr @@ -77,8 +77,10 @@ Location et Files Apache

  • Modules multi-processus (MPMs)
  • Les variables d'environnement d'Apache
  • +
  • L'interprétation des expressions dans Apache
  • Utilisation des gestionnaires d'Apache
  • Filtres
  • +
  • Support du cache des objets partagés
  • Support de suEXEC
  • Optimisation des performances
  • Foire aux Questions