From: Andre Malo IPv6 addresses must be enclosed in square brackets, as in the
following example: Overlapping You only need to set the protocol if you are running on non-standard
ports. For example, running an Les adresses IPv6 doivent être mises entre crochets, comme dans
l'exemple suivant : Des directives If you intend to cache a large number of files in this manner, you
@@ -705,7 +705,7 @@ sys 0m0.000s As with the
diff --git a/docs/manual/caching.html.fr b/docs/manual/caching.html.fr
index 6dd043ee9d4..92b501a3341 100644
--- a/docs/manual/caching.html.fr
+++ b/docs/manual/caching.html.fr
@@ -674,7 +674,7 @@ CacheDirLength 1
réutiliser le descripteur de fichier mis en cache pour tous les
accès futurs à ce fichier. Si vous désirez mettre en cache un grand nombre de fichiers
@@ -778,7 +778,7 @@ sys 0m0.000s Listen [2001:db8::a00:20ff:fea7:ccea]:80
+ Listen [2001:db8::a00:20ff:fea7:ccea]:80
Listen directives will result in a
@@ -156,7 +156,7 @@ Listen 192.0.2.1:80
https site on port 8443: Listen 192.170.2.1:8443 https
+ Listen 192.170.2.1:8443 https
Listen [2001:db8::a00:20ff:fea7:ccea]:80
+ Listen [2001:db8::a00:20ff:fea7:ccea]:80
Listen
@@ -168,7 +168,7 @@ Listen 192.0.2.1:80
des ports non standards. Par exemple, pour travailler en
https sur le port 8443 : Listen 192.170.2.1:8443 https
+ Listen 192.170.2.1:8443 https
CacheFile /usr/local/apache2/htdocs/index.html
+ CacheFile /usr/local/apache2/htdocs/index.html
MMapFile /usr/local/apache2/htdocs/index.html
+ MMapFile /usr/local/apache2/htdocs/index.html
CacheFile /usr/local/apache2/htdocs/index.html
+ CacheFile /usr/local/apache2/htdocs/index.html
MMapFile /usr/local/apache2/htdocs/index.html+
MMapFile /usr/local/apache2/htdocs/index.html
Comme dans le cas de la directive diff --git a/docs/manual/custom-error.html.en b/docs/manual/custom-error.html.en index c4efb99c288..e246f52784d 100644 --- a/docs/manual/custom-error.html.en +++ b/docs/manual/custom-error.html.en @@ -73,7 +73,7 @@ ErrorDocument 401 /subscription/how_to_subscribe.html
The syntax of the ErrorDocument directive is:
ErrorDocument <3-digit-code> <action>+
ErrorDocument <3-digit-code> <action>
where the action will be treated as:
@@ -180,7 +180,7 @@ printf "Status: %s Condition Intercepted\n", $ENV{"REDIRECT_STATUS"};In your server configuration file, you'll see a line such as:
-# Multi-language error messages
+# Multi-language error messagesdiff --git a/docs/manual/custom-error.html.fr b/docs/manual/custom-error.html.fr index 18b815fcfb8..b30de49e1d2 100644 --- a/docs/manual/custom-error.html.fr +++ b/docs/manual/custom-error.html.fr @@ -76,7 +76,7 @@ ErrorDocument 401 /subscription/how_to_subscribe.html
#Include conf/extra/httpd-multilang-errordoc.conf
La syntaxe de la directive ErrorDocument est :
ErrorDocument <code_3_chiffres> <action>+
ErrorDocument <code_3_chiffres> <action>
où action peut être traitée comme :
Dans le fichier de configuration de votre serveur, vous trouverez un groupe de lignes du style :
-# Multi-language error messagestrouve à la première ligne de votre programme CGI et qui va ressembler à ceci : -
+# Multi-language error messagesdiff --git a/docs/manual/developer/hooks.html.en b/docs/manual/developer/hooks.html.en index 6e78a731948..fb7a924c744 100644 --- a/docs/manual/developer/hooks.html.en +++ b/docs/manual/developer/hooks.html.en @@ -49,7 +49,7 @@ arguments. For example, if the hook returns an
#Include conf/extra/httpd-multilang-errordoc.confintand takes arequest_rec *and anintand is calleddo_something, then declare it like this: -AP_DECLARE_HOOK(int, do_something, (request_rec *r, int n))+AP_DECLARE_HOOK(int, do_something, (request_rec *r, int n))This should go in a header which modules will include if @@ -78,7 +78,7 @@
If the return value of a hook is
-void, then all the hooks are called, and the caller is implemented like this:AP_IMPLEMENT_HOOK_VOID(do_something, (request_rec *r, int n), (r, n))+AP_IMPLEMENT_HOOK_VOID(do_something, (request_rec *r, int n), (r, n))The second and third arguments are the dummy argument @@ -98,7 +98,7 @@
If the hook returns a value, then it can either be run until the first hook that does something interesting, like so:
-AP_IMPLEMENT_HOOK_RUN_FIRST(int, do_something, (request_rec *r, int n), (r, n), DECLINED)+AP_IMPLEMENT_HOOK_RUN_FIRST(int, do_something, (request_rec *r, int n), (r, n), DECLINED)The first hook that does not return
-DECLINED@@ -114,7 +114,7 @@ value other than one of those two stops the loop, and its return is the return value. Declare these like so:AP_IMPLEMENT_HOOK_RUN_ALL(int, do_something, (request_rec *r, int n), (r, n), OK, DECLINED)+AP_IMPLEMENT_HOOK_RUN_ALL(int, do_something, (request_rec *r, int n), (r, n), OK, DECLINED)Again,
-OKandDECLINEDare the traditional diff --git a/docs/manual/developer/output-filters.html.en b/docs/manual/developer/output-filters.html.en index d85420c20d2..8904d81fd52 100644 --- a/docs/manual/developer/output-filters.html.en +++ b/docs/manual/developer/output-filters.html.en @@ -129,7 +129,7 @@ brigade should have no side effects (such as changing any state private to the filter).How to handle an empty brigade
apr_status_t dummy_filter(ap_filter_t *f, apr_bucket_brigade *bb)interpreter (often
+How to handle an empty brigade
apr_status_t dummy_filter(ap_filter_t *f, apr_bucket_brigade *bb)you may wish to make use of. Specifically, a new record has been added to the
{ if (APR_BRIGADE_EMPTY(bb)) { return APR_SUCCESS; diff --git a/docs/manual/handler.html.en b/docs/manual/handler.html.en index 6667be81862..1af20f9f27b 100644 --- a/docs/manual/handler.html.en +++ b/docs/manual/handler.html.en @@ -133,7 +133,7 @@ AddHandler add-footer .htmlrequest_recstructure: -char *handler+char *handlerIf you wish to have your module engage a handler, you need diff --git a/docs/manual/handler.html.fr b/docs/manual/handler.html.fr index b51089927fa..6da85ebe6f7 100644 --- a/docs/manual/handler.html.fr +++ b/docs/manual/handler.html.fr @@ -137,7 +137,7 @@ AddHandler add-footer .html Plus précisément, un nouvel enregistrement a été ajouté à la structure
-request_rec:char *handler+char *handlerSi vous voulez que votre module déclenche l'utilisation d'un diff --git a/docs/manual/howto/cgi.html.en b/docs/manual/howto/cgi.html.en index 9ce5f2eb0fe..b378dc7736d 100644 --- a/docs/manual/howto/cgi.html.en +++ b/docs/manual/howto/cgi.html.en @@ -65,7 +65,7 @@ directive has not been commented out. A correctly configured directive may look like this: -
LoadModule cgi_module modules/mod_cgi.so+LoadModule cgi_module modules/mod_cgi.soScriptAlias
@@ -83,7 +83,7 @@The
-ScriptAliasdirective looks like:ScriptAlias /cgi-bin/ /usr/local/apache2/cgi-bin/+ScriptAlias /cgi-bin/ /usr/local/apache2/cgi-bin/The example shown is from your default
-httpd.conf@@ -148,7 +148,7 @@ files with thecgiorplextension as CGI programs:AddHandler cgi-script .cgi .pl+AddHandler cgi-script .cgi .pl@@ -326,7 +326,7 @@ print "Hello, World.";perl) indicated in the first line of your CGI program, which will look something like: -#!/usr/bin/perl+#!/usr/bin/perlMake sure that this is in fact the path to the diff --git a/docs/manual/howto/cgi.html.fr b/docs/manual/howto/cgi.html.fr index ec62f7f6df5..07dfcc3a88a 100644 --- a/docs/manual/howto/cgi.html.fr +++ b/docs/manual/howto/cgi.html.fr @@ -65,7 +65,7 @@ commentée dans votre
httpd.conf. Une directive correcte doit ressembler à ceci : -LoadModule cgi_module modules/mod_cgi.so+LoadModule cgi_module modules/mod_cgi.soScriptAlias
@@ -80,7 +80,7 @@La directive
-ScriptAliasse présente comme suit :ScriptAlias /cgi-bin/ /usr/local/apache2/cgi-bin/+ScriptAlias /cgi-bin/ /usr/local/apache2/cgi-bin/Cet exemple est tiré de votre fichier de configuration @@ -157,7 +157,7 @@ extension
-cgiouplen tant que programmes CGI :AddHandler cgi-script .cgi .pl+AddHandler cgi-script .cgi .pl@@ -348,7 +348,7 @@ print "Hello, World.";
#!/usr/bin/perl+
#!/usr/bin/perl
Assurez-vous qu'il s'agit bien du chemin correct vers
diff --git a/docs/manual/howto/htaccess.html.fr b/docs/manual/howto/htaccess.html.fr
index 2b3cec00a3c..db920dfab3a 100644
--- a/docs/manual/howto/htaccess.html.fr
+++ b/docs/manual/howto/htaccess.html.fr
@@ -76,7 +76,7 @@ Includes - SSI)
.config, vous pouvez mettre ceci dans le fichier de
configuration de votre serveur :
AccessFileName .config+
AccessFileName .configdiff --git a/docs/manual/howto/public_html.html.en b/docs/manual/howto/public_html.html.en index f09d9576734..85a5ffc129b 100644 --- a/docs/manual/howto/public_html.html.en +++ b/docs/manual/howto/public_html.html.en @@ -137,7 +137,7 @@ You can, likewise, disable the feature for all but a few users by using a configuration like the following: -
UserDir disabled
+UserDir disableddiff --git a/docs/manual/howto/public_html.html.fr b/docs/manual/howto/public_html.html.fr index bcfc20c7bfb..30976cf6ad1 100644 --- a/docs/manual/howto/public_html.html.fr +++ b/docs/manual/howto/public_html.html.fr @@ -150,7 +150,7 @@ avec le syst utilisateurs sauf certains d'entre eux en utilisant une configuration du style : -
UserDir enabled rbowen krietzUserDir disabled
+UserDir disableddiff --git a/docs/manual/howto/ssi.html.en b/docs/manual/howto/ssi.html.en index 36eb669d4e5..ccaa1bd039a 100644 --- a/docs/manual/howto/ssi.html.en +++ b/docs/manual/howto/ssi.html.en @@ -92,7 +92,7 @@ existing HTML documents.
UserDir enabled rbowen krietzTo permit SSI on your server, you must have the following directive either in your
-httpd.conffile, or in a.htaccessfile:Options +Includes+Options +IncludesThis tells Apache that you want to permit files to be parsed @@ -107,7 +107,7 @@ existing HTML documents.
do this. You can tell Apache to parse any file with a particular file extension, such as.shtml, with the following directives: -AddType text/html .shtml
+AddType text/html .shtml@@ -118,7 +118,7 @@ existing HTML documents. directives would be executed.
AddOutputFilter INCLUDES .shtmlThe other method is to use the
-XBitHackdirective:XBitHack on+XBitHack on
XBitHack@@ -440,7 +440,7 @@ modified?In your configuration file, you could put the following line:
-BrowserMatchNoCase macintosh Maccan be specified on a per module basis: -
+BrowserMatchNoCase macintosh Macdiff --git a/docs/manual/howto/ssi.html.fr b/docs/manual/howto/ssi.html.fr index e1a32545c64..62d6c8f7755 100644 --- a/docs/manual/howto/ssi.html.fr +++ b/docs/manual/howto/ssi.html.fr @@ -99,7 +99,7 @@ HTML pr devez ajouter la directive suivante dans votre fichier
BrowserMatchNoCase MSIE InternetExplorerhttpd.conf, ou dans un fichier.htaccess: -Options +Includes+Options +IncludesCette directive indique à Apache que vous désirez permettre la @@ -115,7 +115,7 @@ HTML pr directives SSI. Vous devez indiquer à Apache quels fichiers seront concernés. Vous pouvez y parvenir en indiquant une extension, comme
-.shtml, à l'aide des directives suivantes :AddType text/html .shtmlappelé
+AddType text/html .shtml@@ -127,7 +127,7 @@ HTML pr SSI qu'elle contient soient traitées.
AddOutputFilter INCLUDES .shtmlUne autre méthode consiste à utiliser la directive
-XBitHack:XBitHack on+XBitHack onLa directive
XBitHack@@ -452,7 +452,7 @@ HTML prVous pouvez ajouter les lignes suivantes dans votre fichier de configuration :
-BrowserMatchNoCase macintosh Macfor this purpose. For example, to rotate the logs every 24 hours, you can use: -
+BrowserMatchNoCase macintosh Macdiff --git a/docs/manual/logs.html.en b/docs/manual/logs.html.en index 5ae97eda53d..7008c5c73e7 100644 --- a/docs/manual/logs.html.en +++ b/docs/manual/logs.html.en @@ -164,7 +164,7 @@
BrowserMatchNoCase MSIE InternetExplorerDo this by specifying the name of the module in your
-LogLeveldirective:LogLevel info rewrite:trace5+LogLevel info rewrite:trace5This sets the main
LogLevelto info, but @@ -547,7 +547,7 @@ LogFormat "%!200,304,302{Referer}i" refererlogCustomLog "|/usr/local/apache/bin/rotatelogs /var/log/access_log 86400" common+CustomLog "|/usr/local/apache/bin/rotatelogs /var/log/access_log 86400" commonNotice that quotes are used to enclose the entire command diff --git a/docs/manual/logs.html.fr b/docs/manual/logs.html.fr index be366228c92..cb98b84d8e2 100644 --- a/docs/manual/logs.html.fr +++ b/docs/manual/logs.html.fr @@ -177,7 +177,7 @@
Pour ce faire, vous devez spécifier le nom du module dans votre directive
-LogLevel:LogLevel info rewrite:trace5+LogLevel info rewrite:trace5Dans cet exemple, le niveau de journalisation général est défini @@ -593,7 +593,7 @@ LogFormat "%!200,304,302{Referer}i" refererlog
rotatelogs. Par exemple, pour une rotation des journaux toutes les 24 heures, ajoutez ces lignes : -CustomLog "|/usr/local/apache/bin/rotatelogs /var/log/access_log 86400" common+CustomLog "|/usr/local/apache/bin/rotatelogs /var/log/access_log 86400" commonNotez que l'ensemble de la commande qui sera appelée par le tube de diff --git a/docs/manual/misc/perf-scaling.html.en b/docs/manual/misc/perf-scaling.html.en index 72a9201ab78..1e85057d20e 100644 --- a/docs/manual/misc/perf-scaling.html.en +++ b/docs/manual/misc/perf-scaling.html.en @@ -433,7 +433,7 @@ Swap: 3903784 12540 3891244
LogLevel debug mod_ssl:warn+LogLevel debug mod_ssl:warndiff --git a/docs/manual/mod/core.html.en b/docs/manual/mod/core.html.en index 9ef8a701031..156210ac8d5 100644 --- a/docs/manual/mod/core.html.en +++ b/docs/manual/mod/core.html.en @@ -143,7 +143,7 @@ available
Using
-nonefor an argument will disable any accept filters for that protocol. This is useful for protocols that require a server send data first, such asftp:ornntp:AcceptFilter nntp none+AcceptFilter nntp noneThe default protocol names are
-httpsfor port 443 diff --git a/docs/manual/mod/core.html.fr b/docs/manual/mod/core.html.fr index 494ce15947b..392d8cb3dd7 100644 --- a/docs/manual/mod/core.html.fr +++ b/docs/manual/mod/core.html.fr @@ -145,7 +145,7 @@ d'acceptation filtre d'acceptation pour ce protocole. Ceci s'avère utile pour les protocoles qui nécessitent l'envoi de données par le serveur en premier, commeftp:ounntp:AcceptFilter nntp none+AcceptFilter nntp noneLes noms de protocoles par défaut sont
httpspour le diff --git a/docs/manual/mod/mod_access_compat.html.en b/docs/manual/mod/mod_access_compat.html.en index 93d1e07c307..0807bf02f22 100644 --- a/docs/manual/mod/mod_access_compat.html.en +++ b/docs/manual/mod/mod_access_compat.html.en @@ -158,7 +158,7 @@ Allow from 10 172.20 192.168.2
Allow from 10.1.0.0/255.255.0.0+
Allow from 10.1.0.0/255.255.0.0
A network a.b.c.d, and a netmask w.x.y.z. For more fine-grained subnet restriction.
Allow from 10.1.0.0/16+
Allow from 10.1.0.0/16
Similar to the previous case, except the netmask consists of nnn high-order 1 bits.
Allow from 10.1.0.0/255.255.0.0+
Allow from 10.1.0.0/255.255.0.0
Un réseau a.b.c.d, et un masque de sous-réseau w.x.y.z, pour une définition plus précise de la restriction d'accès imposée à un @@ -176,7 +176,7 @@ Allow from 10 172.20 192.168.2
Allow from 10.1.0.0/16+
Allow from 10.1.0.0/16
Identique au cas précédent, mis à part que le masque est constitué des nnn bits de poids fort.
Alias /image /ftp/pub/image+
Alias /image /ftp/pub/image
A request for http://example.com/image/foo.gif would cause
@@ -139,7 +139,7 @@ Alias /foo /gaq
URL-path then the server will require a trailing / in
order to expand the alias. That is, if you use
Alias /icons/ /usr/local/apache/icons/+
Alias /icons/ /usr/local/apache/icons/
then the url /icons will not be aliased, as it lacks
@@ -190,7 +190,7 @@ expressions
example, to activate the /icons directory, one might
use:
AliasMatch ^/icons(.*) /usr/local/apache/icons$1+
AliasMatch ^/icons(.*) /usr/local/apache/icons$1
The full range of regular expression @@ -198,7 +198,7 @@ expressions it is possible to construct an alias with case-insensitive matching of the URL-path:
-AliasMatch (?i)^/image(.*) /ftp/pub/image$1+
AliasMatch (?i)^/image(.*) /ftp/pub/image$1
One subtle difference @@ -222,18 +222,18 @@ expressions
For example, suppose you want to replace this with AliasMatch:
-Alias /image/ /ftp/pub/image/+
Alias /image/ /ftp/pub/image/
This is NOT equivalent - don't do this! This will send all requests that have /image/ anywhere in them to /ftp/pub/image/:
-AliasMatch /image/ /ftp/pub/image/+
AliasMatch /image/ /ftp/pub/image/
This is what you need to get the same effect:
-AliasMatch ^/image/(.*)$ /ftp/pub/image/$1+
AliasMatch ^/image/(.*)$ /ftp/pub/image/$1
Of course, there's no point in @@ -243,7 +243,7 @@ expressions you do more complicated things. For example, you could serve different kinds of files from different directories:
-AliasMatch ^/image/(.*)\.jpg$ /files/jpg.images/$1.jpg
+AliasMatch ^/image/(.*)\.jpg$ /files/jpg.images/$1.jpg@@ -371,7 +371,7 @@ of the current URL example, to redirect all GIF files to like-named JPEG files on another server, one might use: -
AliasMatch ^/image/(.*)\.gif$ /files/gif.images/$1.gifRedirectMatch (.*)\.gif$ http://other.example.com$1.jpg+RedirectMatch (.*)\.gif$ http://other.example.com$1.jpgThe considerations related to the difference between @@ -437,7 +437,7 @@ target as a CGI script to scripts beginning with the second argument, which is a full pathname in the local filesystem.
-ScriptAlias /cgi-bin/ /web/cgi-bin/+ScriptAlias /cgi-bin/ /web/cgi-bin/A request for
http://example.com/cgi-bin/foowould cause the @@ -453,7 +453,7 @@ target as a CGI script-
ScriptAliascan also be used in conjunction with a script or handler you have. For example:ScriptAlias /cgi-bin/ /web/cgi-handler.pl+ScriptAlias /cgi-bin/ /web/cgi-handler.plIn this scenario all files requested in
-/cgi-bin/will be @@ -507,7 +507,7 @@ and designates the target as a CGI script example, to activate the standard/cgi-bin, one might use:ScriptAliasMatch ^/cgi-bin(.*) /usr/local/apache/cgi-bin$1+ScriptAliasMatch ^/cgi-bin(.*) /usr/local/apache/cgi-bin$1As for AliasMatch, the full range of regular @@ -515,7 +515,7 @@ and designates the target as a CGI script For example, it is possible to construct an alias with case-insensitive matching of the URL-path:
-ScriptAliasMatch (?i)^/cgi-bin(.*) /usr/local/apache/cgi-bin$1+ScriptAliasMatch (?i)^/cgi-bin(.*) /usr/local/apache/cgi-bin$1The considerations related to the difference between diff --git a/docs/manual/mod/mod_alias.html.fr b/docs/manual/mod/mod_alias.html.fr index 2610e0cb566..cc1d45ed48b 100644 --- a/docs/manual/mod/mod_alias.html.fr +++ b/docs/manual/mod/mod_alias.html.fr @@ -135,7 +135,7 @@ de fichiers est sensible à la casse, même sur les systèmes de fichiers insensibles à la casse.
-Alias /image /ftp/pub/image+Alias /image /ftp/pub/imageUne requête pour
-http://example.com/image/foo.giffera @@ -151,7 +151,7 @@ de fichiers URL, vous devrez aussi ajouter un slash de fin au chemin de la requête. Autrement dit, si vous définissezAlias /icons/ /usr/local/apache/icons/+Alias /icons/ /usr/local/apache/icons/l'alias précédent ne s'appliquera pas à l'url @@ -204,7 +204,7 @@ en faisant intervenir les expressions rationnelles Par exemple, pour activer le répertoire
-/icons, on peut utiliser :AliasMatch ^/icons(.*) /usr/local/apache/icons$1+AliasMatch ^/icons(.*) /usr/local/apache/icons$1Toute la puissance des expressions @@ -212,7 +212,7 @@ en faisant intervenir les expressions rationnelles il est possible de construire un alias avec un modèle de chemin URL insensible à la casse :
-AliasMatch (?i)^/image(.*) /ftp/pub/image$1+AliasMatch (?i)^/image(.*) /ftp/pub/image$1Il existe une différence subtile entre
AliasetAliasMatch:Aliascopie automatiquement toute @@ -232,20 +232,20 @@ en faisant intervenir les expressions rationnellesPar exemple, supposons que nous voulions reformuler cet alias avec AliasMatch :
-Alias /image/ /ftp/pub/image/+Alias /image/ /ftp/pub/image/Le simple remplacement d'Alias par AliasMatch ne produira pas le même résultat. Ainsi, ce qui suit va rediriger toutes les requêtes qui contiennent /image/ vers /ftp/pub/image/ :
-AliasMatch /image/ /ftp/pub/image/+AliasMatch /image/ /ftp/pub/image/Voici la directive AliasMatch qui produira le même résultat que la directive Alias ci-dessus :
-AliasMatch ^/image/(.*)$ /ftp/pub/image/$1+AliasMatch ^/image/(.*)$ /ftp/pub/image/$1Bien entendu, il n'y a aucune raison d'utiliser
-AliasMatchdans le cas oùAliassuffit.AliasMatchvous permet d'effectuer @@ -253,7 +253,7 @@ en faisant intervenir les expressions rationnelles servir différentes sortes de fichiers à partir de répertoires différents :AliasMatch ^/image/(.*)\.jpg$ /fichiers/jpg.images/$1.jpg
+AliasMatch ^/image/(.*)\.jpg$ /fichiers/jpg.images/$1.jpg@@ -392,7 +392,7 @@ courante les fichiers GIF vers les fichiers JPEG de même nom sur un autre serveur, on peut utiliser : -
AliasMatch ^/image/(.*)\.gif$ /fichiers/gif.images/$1.gifRedirectMatch (.*)\.gif$ http://autre.example.com$1.jpg+RedirectMatch (.*)\.gif$ http://autre.example.com$1.jpgLes remarques à propos de la différence entre
-AliasetAliasMatchs'appliquent aussi à la @@ -457,7 +457,7 @@ et d second argument, qui est un chemin complet dans le système de fichiers local.ScriptAlias /cgi-bin/ /web/cgi-bin/+ScriptAlias /cgi-bin/ /web/cgi-bin/Une requête pour
http://example.com/cgi-bin/foo@@ -474,7 +474,7 @@ et dVous pouvez aussi utiliser
-ScriptAliasavec un script ou gestionnaire de votre cru. Par exemple :ScriptAlias /cgi-bin/ /web/cgi-handler.pl+ScriptAlias /cgi-bin/ /web/cgi-handler.plDans ce scénario, tous les fichiers faisant l'objet d'une requête @@ -530,14 +530,14 @@ comme un script CGI comme nom de fichier. Par exemple, pour activer le répertoire standard
-/cgi-bin, on peut utiliser :ScriptAliasMatch ^/cgi-bin(.*) /usr/local/apache/cgi-bin$1+ScriptAliasMatch ^/cgi-bin(.*) /usr/local/apache/cgi-bin$1Comme dans le cas d'AliasMatch, toute la puissance des expressions rationnelles peut être mise à contribution. Par exemple, il est possible de construire un alias avec une comparaison du modèle du chemin URL insensible à la casse :
-ScriptAliasMatch (?i)^/cgi-bin(.*) /usr/local/apache/cgi-bin$1+ScriptAliasMatch (?i)^/cgi-bin(.*) /usr/local/apache/cgi-bin$1Les remarques à propos de la différence entre
-AliasetAliasMatchs'appliquent aussi à la diff --git a/docs/manual/mod/mod_authn_anon.html.en b/docs/manual/mod/mod_authn_anon.html.en index c3d00c2ed42..7a81e595495 100644 --- a/docs/manual/mod/mod_authn_anon.html.en +++ b/docs/manual/mod/mod_authn_anon.html.en @@ -131,7 +131,7 @@ password verification 'anonymous' is always one of the allowed userIDs.@@ -440,7 +440,7 @@ configured Url-path is a (%-escaped) relative URL to the icon, or a fully qualified remote URL. -Example:
Anonymous anonymous "Not Registered" "I don't know"+Example:
Anonymous anonymous "Not Registered" "I don't know"This would allow the user to enter without password diff --git a/docs/manual/mod/mod_authn_anon.html.fr b/docs/manual/mod/mod_authn_anon.html.fr index 61eb1a5eb6b..b72d19a040f 100644 --- a/docs/manual/mod/mod_authn_anon.html.fr +++ b/docs/manual/mod/mod_authn_anon.html.fr @@ -137,7 +137,7 @@ acc Il est fortement conseillé d'intégrer l'utilisateur spécial '
-anonymous' dans la liste des identifiants.@@ -420,7 +420,7 @@ content-typeExemple:
Anonymous anonymous "Not Registered" "I don't know"+Exemple:
Anonymous anonymous "Not Registered" "I don't know"Dans cet exemple, l'utilisateur peut accéder au site sans diff --git a/docs/manual/mod/mod_authn_core.html.en b/docs/manual/mod/mod_authn_core.html.en index 46688e0ac96..00775c12a3e 100644 --- a/docs/manual/mod/mod_authn_core.html.en +++ b/docs/manual/mod/mod_authn_core.html.en @@ -144,7 +144,7 @@ authentication
For example:
-AuthName "Top Secret"+AuthName "Top Secret"The string provided for the
AuthNameis what will diff --git a/docs/manual/mod/mod_authn_core.html.fr b/docs/manual/mod/mod_authn_core.html.fr index d0d5b9f0b63..531cec124cf 100644 --- a/docs/manual/mod/mod_authn_core.html.fr +++ b/docs/manual/mod/mod_authn_core.html.fr @@ -151,7 +151,7 @@ l'authentification HTTPPar exemple :
-AuthName "Top Secret"+AuthName "Top Secret"La chaîne fournie comme argument à
-AuthNamediff --git a/docs/manual/mod/mod_authnz_ldap.html.en b/docs/manual/mod/mod_authnz_ldap.html.en index 54ff25503bb..b65d85f0d6f 100644 --- a/docs/manual/mod/mod_authnz_ldap.html.en +++ b/docs/manual/mod/mod_authnz_ldap.html.en @@ -1077,9 +1077,9 @@ to perform a DN lookupAuthLDAPBindDN.AuthLDAPInitialBindPattern (.+) $1@example.com+AuthLDAPInitialBindPattern (.+) $1@example.com-AuthLDAPInitialBindPattern (.+) cn=$1,dc=example,dc=com+AuthLDAPInitialBindPattern (.+) cn=$1,dc=example,dc=com@@ -393,7 +393,7 @@ content-encodingNot available with authorization-only
diff --git a/docs/manual/mod/mod_authnz_ldap.html.fr b/docs/manual/mod/mod_authnz_ldap.html.fr index ffbfaaf1949..6ad7bd50356 100644 --- a/docs/manual/mod/mod_authnz_ldap.html.fr +++ b/docs/manual/mod/mod_authnz_ldap.html.fr @@ -1190,9 +1190,9 @@ distant utilis utiliser de nom d'utilisateur dédié via la directiveAuthLDAPBindDN. -AuthLDAPInitialBindPattern (.+) $1@example.com+AuthLDAPInitialBindPattern (.+) $1@example.com-AuthLDAPInitialBindPattern (.+) cn=$1,dc=example,dc=com+AuthLDAPInitialBindPattern (.+) cn=$1,dc=example,dc=com@@ -274,7 +274,7 @@ icon selected by MIME content-type This alternate text is displayed if the client is image-incapable, has image loading disabled, or fails to retrieve the icon. -Non disponible dans la cas d'une autorisation seule
diff --git a/docs/manual/mod/mod_authz_core.html.en b/docs/manual/mod/mod_authz_core.html.en index e0d01f921a4..2c70ec1e536 100644 --- a/docs/manual/mod/mod_authz_core.html.en +++ b/docs/manual/mod/mod_authz_core.html.en @@ -164,10 +164,10 @@ 'granted' or 'denied'. The following examples will grant or deny access to all requests. -Require all granted+Require all granted-Require all denied+Require all denied@@ -182,7 +182,7 @@The following example will only allow GET, HEAD, POST, and OPTIONS requests:
-Require method GET POST OPTIONS+Require method GET POST OPTIONSThe following example will allow GET, HEAD, POST, and OPTIONS @@ -202,7 +202,7 @@
The
-exprprovider allows to base authorization decisions on arbitrary expressions.Require expr "%{TIME_HOUR} -ge 9 && %{TIME_HOUR} -le 17"+Require expr "%{TIME_HOUR} -ge 9 && %{TIME_HOUR} -le 17"The syntax is described in the ap_expr diff --git a/docs/manual/mod/mod_authz_core.html.fr b/docs/manual/mod/mod_authz_core.html.fr index c35b4adf9f6..b869a9f8a0e 100644 --- a/docs/manual/mod/mod_authz_core.html.fr +++ b/docs/manual/mod/mod_authz_core.html.fr @@ -153,10 +153,10 @@ d'autorisation sont : 'granted' ou 'denied'. Les exemples suivants autorisent ou interdisent l'accès à toutes les requêtes.
-Require all granted+Require all granted-Require all denied+Require all denied@@ -172,7 +172,7 @@ d'autorisationDans l'exemple suivant, seules les méthodes GET, HEAD, POST, et OPTIONS sont autorisées :
-Require method GET POST OPTIONS+Require method GET POST OPTIONSDans l'exemple suivant, les méthodes GET, HEAD, POST, et OPTIONS @@ -191,7 +191,7 @@ d'autorisation
Le fournisseur
-exprpermet d'accorder l'autorisation d'accès en fonction d'expressions arbitraires.Require expr "%{TIME_HOUR} -ge 9 && %{TIME_HOUR} -le 17"+Require expr "%{TIME_HOUR} -ge 9 && %{TIME_HOUR} -le 17"La syntaxe de l'expression est décrite dans la documentation de ap_expr.
diff --git a/docs/manual/mod/mod_authz_dbm.html.en b/docs/manual/mod/mod_authz_dbm.html.en index eca5417e98c..e4eae574914 100644 --- a/docs/manual/mod/mod_authz_dbm.html.en +++ b/docs/manual/mod/mod_authz_dbm.html.en @@ -69,7 +69,7 @@This directive specifies group membership that is required for the user to gain access.
-Require dbm-group admin+Require dbm-group admin@@ -79,7 +79,7 @@When this directive is specified, the user must be a member of the group assigned to the file being accessed.
-Require dbm-file-group+Require dbm-file-groupdiff --git a/docs/manual/mod/mod_authz_dbm.html.fr b/docs/manual/mod/mod_authz_dbm.html.fr index b3f99c876b4..2a6ccc96955 100644 --- a/docs/manual/mod/mod_authz_dbm.html.fr +++ b/docs/manual/mod/mod_authz_dbm.html.fr @@ -70,7 +70,7 @@Cette directive permet de spécifier à quel groupe un utilisateur doit appartenir pour obtenir l'autorisation d'accès.
-Require dbm-group admin+Require dbm-group admin@@ -80,7 +80,7 @@Lorsque cette directive est définie, l'utilisateur doit appartenir au groupe du fichier pour pouvoir y accéder.
-Require dbm-file-group+Require dbm-file-groupdiff --git a/docs/manual/mod/mod_authz_groupfile.html.en b/docs/manual/mod/mod_authz_groupfile.html.en index e6748ed1c11..c6fdf007581 100644 --- a/docs/manual/mod/mod_authz_groupfile.html.en +++ b/docs/manual/mod/mod_authz_groupfile.html.en @@ -69,7 +69,7 @@This directive specifies group membership that is required for the user to gain access.
-Require group admin+Require group admin@@ -79,7 +79,7 @@When this directive is specified, the user must be a member of the group assigned to the file being accessed.
-Require file-group+Require file-groupdiff --git a/docs/manual/mod/mod_authz_groupfile.html.fr b/docs/manual/mod/mod_authz_groupfile.html.fr index c9116aea404..ec08e4848ac 100644 --- a/docs/manual/mod/mod_authz_groupfile.html.fr +++ b/docs/manual/mod/mod_authz_groupfile.html.fr @@ -70,7 +70,7 @@ fonction de leur appartenanceCette directive permet de spécifier à quel groupe un utilisateur doit appartenir pour obtenir l'autorisation d'accès.
-Require group admin+Require group admin@@ -80,7 +80,7 @@ fonction de leur appartenanceLorsque cette directive est définie, l'utilisateur doit appartenir au groupe du fichier pour pouvoir y accéder.
-Require file-group+Require file-groupdiff --git a/docs/manual/mod/mod_authz_host.html.en b/docs/manual/mod/mod_authz_host.html.en index 0c659ab2412..5f6a23a4a36 100644 --- a/docs/manual/mod/mod_authz_host.html.en +++ b/docs/manual/mod/mod_authz_host.html.en @@ -107,14 +107,14 @@ Require ip 10 172.20 192.168.2A network/netmask pair:
-Require ip 10.1.0.0/255.255.0.0+Require ip 10.1.0.0/255.255.0.0A network a.b.c.d, and a netmask w.x.y.z. For more fine-grained subnet restriction.
A network/nnn CIDR specification:
-Require ip 10.1.0.0/16+Require ip 10.1.0.0/16Similar to the previous case, except the netmask consists of nnn high-order 1 bits.
@@ -175,7 +175,7 @@ Require host .net example.eduThis allows a convenient way to match connections that originate from the local host:
-Require local+Require localdiff --git a/docs/manual/mod/mod_authz_host.html.fr b/docs/manual/mod/mod_authz_host.html.fr index d0ff0371e28..397d1cd9057 100644 --- a/docs/manual/mod/mod_authz_host.html.fr +++ b/docs/manual/mod/mod_authz_host.html.fr @@ -109,14 +109,14 @@ Require ip 10 172.20 192.168.2Une paire réseau/masque de sous-réseau :
-Require ip 10.1.0.0/255.255.0.0+Require ip 10.1.0.0/255.255.0.0Un réseau a.b.c.d, et un masque de sous-réseau w.x.y.z. pour une restriction de sous-réseau plus fine.
Une spécification CIDR réseau/nnn :
-Require ip 10.1.0.0/16+Require ip 10.1.0.0/16Identique au cas précédent, excepté que le masque de sous-réseau représente les nnn premiers bits de poids fort.
@@ -178,7 +178,7 @@ Require host .net example.eduL'exemple suivant montre une méthode simple pour sélectionner les connexions en provenance de l'hôte local :
-Require local+Require localdiff --git a/docs/manual/mod/mod_authz_user.html.en b/docs/manual/mod/mod_authz_user.html.en index ace8715b2f5..cb7ffab043b 100644 --- a/docs/manual/mod/mod_authz_user.html.en +++ b/docs/manual/mod/mod_authz_user.html.en @@ -70,7 +70,7 @@This directive specifies a list of users that are allowed to gain access.
-Require user john paul george ringo+Require user john paul george ringo@@ -80,7 +80,7 @@When this directive is specified, any successfully authenticated user will be allowed to gain access.
-Require valid-user+Require valid-userdiff --git a/docs/manual/mod/mod_authz_user.html.fr b/docs/manual/mod/mod_authz_user.html.fr index e3c50732dbd..9dba5d433ae 100644 --- a/docs/manual/mod/mod_authz_user.html.fr +++ b/docs/manual/mod/mod_authz_user.html.fr @@ -71,7 +71,7 @@Cette directive permet de spécifier une liste d'utilisateurs autorisés à accéder à la ressource.
-Require user john paul george ringo+Require user john paul george ringo@@ -81,7 +81,7 @@Lorsque cette directive est définie, tout utilisateur qui s'est authentifié avec succès aura l'autorisation d'accès à la ressource.
-Require valid-user+Require valid-userdiff --git a/docs/manual/mod/mod_autoindex.html.en b/docs/manual/mod/mod_autoindex.html.en index 792dfc50f8f..cf26e3c7637 100644 --- a/docs/manual/mod/mod_autoindex.html.en +++ b/docs/manual/mod/mod_autoindex.html.en @@ -250,7 +250,7 @@ selected by MIME-encoding This alternate text is displayed if the client is image-incapable, has image loading disabled, or fails to retrieve the icon. -AddAltByEncoding gzip x-gzip+AddAltByEncoding gzip x-gzipAddAltByType 'plain text' text/plain+AddAltByType 'plain text' text/plainMIME-encoding is a valid content-encoding, such as
-x-compress.AddIconByEncoding /icons/compress.png x-compress+AddIconByEncoding /icons/compress.png x-compressMIME-type is a wildcard expression matching required the mime types.
-AddIconByType (IMG,/icons/image.png) image/*+AddIconByType (IMG,/icons/image.png) image/*DefaultIcon /icon/unknown.png+DefaultIcon /icon/unknown.png@@ -459,7 +459,7 @@ of the index listing of the file that will be inserted at the top of the index listing. Filename is the name of the file to include. -HeaderName HEADER.html+HeaderName HEADER.html@@ -468,7 +468,7 @@ of the index listing access the directory being indexed. If Filename begins with a slash, it will be taken to be relative to the@@ -539,7 +539,7 @@ a directory files. By default, the list containsDocumentRoot. -HeaderName /include/HEADER.html+HeaderName /include/HEADER.htmlFilename must resolve to a document with a major @@ -478,7 +478,7 @@ of the index listing actual file type (as opposed to its output) is marked as
-text/htmlsuch as with a directive like:AddType text/html .cgi+AddType text/html .cgiContent negotiation @@ -515,7 +515,7 @@ of the index listing
The
-IndexHeadInsertdirective specifies a string to insert in the <head> section of the HTML generated for the index page.IndexHeadInsert "<link rel=\"sitemap\" href=\"/sitemap.html\">"+IndexHeadInsert "<link rel=\"sitemap\" href=\"/sitemap.html\">".(the current directory). -IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t+IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t@@ -285,7 +285,7 @@ fichier en fonction de son type MIME peut pas afficher d'images, si le chargement d'images est désactivé ou si l'icône ne peut pas être trouvé. -Regular Expressions
@@ -620,7 +620,7 @@ indexing (It depends on whether the underlying file system uses Unicode filenames or not.) -IndexOptions Charset=UTF-8+IndexOptions Charset=UTF-8@@ -824,7 +824,7 @@ indexing specify the MIME content-type of the generated page. The default is text/html. -IndexOptions Type=text/plain+IndexOptions Type=text/plain@@ -882,7 +882,7 @@ indexingwill be the equivalent of
-IndexOptions HTMLTable SuppressColumnsorting+IndexOptions HTMLTable SuppressColumnsorting@@ -960,7 +960,7 @@ Name|Date|Size|DescriptionThe
-IndexStyleSheetdirective sets the name of the file that will be used as the CSS for the index listing.IndexStyleSheet "/css/style.css"+IndexStyleSheet "/css/style.css"Using this directive in conjunction with
-IndexOptions diff --git a/docs/manual/mod/mod_autoindex.html.fr b/docs/manual/mod/mod_autoindex.html.fr index 34b95628128..c31d089c974 100644 --- a/docs/manual/mod/mod_autoindex.html.fr +++ b/docs/manual/mod/mod_autoindex.html.fr @@ -259,7 +259,7 @@ fichier en fonction de son codage MIME peut pas afficher d'images, si le chargement d'images est désactivé ou si l'icône ne peut pas être trouvé.AddAltByEncoding gzip x-gzip+AddAltByEncoding gzip x-gzipAddAltByType 'Fichier texte' text/plain+AddAltByType 'Fichier texte' text/plain@@ -417,7 +417,7 @@ codage MIMEcodage MIME doit être un codage valide, comme
-x-compress.AddIconByEncoding /icons/compress.png x-compress+AddIconByEncoding /icons/compress.png x-compress@@ -446,7 +446,7 @@ type MIMEtype MIME est une expression avec caractères génériques représentant le type MIME.
-AddIconByType (IMG,/icons/image.png) image/*+AddIconByType (IMG,/icons/image.png) image/*@@ -467,7 +467,7 @@ n'est pr chemin URL est une URL relative (échappée par des caractères '%') vers l'icône ou une URL pleinement qualifiée. -DefaultIcon /icon/unknown.png+DefaultIcon /icon/unknown.png@@ -486,7 +486,7 @@ contenant l'index le nom du fichier qui sera inséré au début de la page contenant l'index. nom fichier est le nom du fichier à inclure. -HeaderName HEADER.html+HeaderName HEADER.html@@ -497,7 +497,7 @@ contenant l'index considéré comme relatif au répertoire défini par la directive@@ -574,7 +574,7 @@ de l'index d'un r ignorer. Par défaut, la liste contientDocumentRoot. -HeaderName /include/HEADER.html+HeaderName /include/HEADER.htmlnom fichier doit correspondre à un document dont le @@ -508,7 +508,7 @@ contenant l'index sortie) est marqué comme
-text/htmlpar exemple à l'aide d'une directive comme :AddType text/html .cgi+AddType text/html .cgi-IndexHeadInsert "<link rel=\"sitemap\" href=\"/sitemap.html\">"+IndexHeadInsert "<link rel=\"sitemap\" href=\"/sitemap.html\">".(le répertoire courant). -IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t+IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t@@ -128,7 +128,7 @@ cache responses larger than those cacheable withinExpressions rationnelles
@@ -659,7 +659,7 @@ r système de fichiers sous-jacent utilise les noms de fichiers en Unicode ou non). -IndexOptions Charset=UTF-8+IndexOptions Charset=UTF-8@@ -890,7 +890,7 @@ r MIME de la page générée. La valeur par défaut est text/html. -IndexOptions Type=text/plain+IndexOptions Type=text/plain@@ -951,7 +951,7 @@ rest équivalent à
-IndexOptions HTMLTable SuppressColumnsorting+IndexOptions HTMLTable SuppressColumnsorting@@ -1038,7 +1038,7 @@ r définir le nom du fichier qui servira de feuille de style CSS pour l'index. -IndexStyleSheet "/css/style.css"+IndexStyleSheet "/css/style.css"L'utilisation de cette directive en conjonction avec
-IndexOptions diff --git a/docs/manual/mod/mod_buffer.html.en b/docs/manual/mod/mod_buffer.html.en index 8cca87c4d30..a8638c7b023 100644 --- a/docs/manual/mod/mod_buffer.html.en +++ b/docs/manual/mod/mod_buffer.html.en @@ -58,7 +58,7 @@AddOutputFilterorAddOutputFilterByTypedirectives.diff --git a/docs/manual/mod/mod_cache_socache.html.en b/docs/manual/mod/mod_cache_socache.html.en index d15ea2e4c5c..b738336b832 100644 --- a/docs/manual/mod/mod_cache_socache.html.en +++ b/docs/manual/mod/mod_cache_socache.html.en @@ -100,7 +100,7 @@ CacheSocacheMaxSize 102400 implementations of shared object caches are available to choose from. -Using buffer with mod_include
AddOutputFilterByType INCLUDES;BUFFER text/html+Using buffer with mod_include
AddOutputFilterByType INCLUDES;BUFFER text/htmlThe buffer filters read the request/response into diff --git a/docs/manual/mod/mod_buffer.html.fr b/docs/manual/mod/mod_buffer.html.fr index 5276befae32..5373f6f4b02 100644 --- a/docs/manual/mod/mod_buffer.html.fr +++ b/docs/manual/mod/mod_buffer.html.fr @@ -60,7 +60,7 @@ d'Apache directives@@ -271,7 +271,7 @@ seront stock définir la structure des sous-répertoires du répertoire racine spécifié. -SetInputFilter,SetOutputFilter,AddOutputFilterouAddOutputFilterByType. -@@ -247,7 +247,7 @@ avant d'envoyer les donn que le serveur n'effectue pas une mise en tampon excessive au cas où les données arriveraient plus vite que prévu. -Utilisation d'un tampon avec mod_include
AddOutputFilterByType INCLUDES;BUFFER text/html+Utilisation d'un tampon avec mod_include
AddOutputFilterByType INCLUDES;BUFFER text/htmlLes filtres de mise en tampon lisent la diff --git a/docs/manual/mod/mod_cache.html.en b/docs/manual/mod/mod_cache.html.en index ed17c8d1dbb..475210558c7 100644 --- a/docs/manual/mod/mod_cache.html.en +++ b/docs/manual/mod/mod_cache.html.en @@ -319,7 +319,7 @@ AddOutputFilterByType INCLUDES;CACHE;DEFLATE text/html@@ -415,7 +415,7 @@ CacheDetailHeader onLogFormatdirective as follows: -LogFormat "%{cache-status}e ..."+LogFormat "%{cache-status}e ..."Based on the caching decision made, the reason is also written to the @@ -362,7 +362,7 @@ CustomLog invalidated-requests.log common env=cache-invalidate with the document. The value specified with the
-CacheMaxExpiredirective does not override this setting.CacheDefaultExpire 86400+CacheDefaultExpire 86400mod_cacheto not cache urls at or below url-string. -@@ -216,7 +216,7 @@ mettre en cache avant de les envoyer au client enregistrées dans le cache, et non lorsque les données sont servies à partir du cache. -Example
CacheDisable /local_files+Example
CacheDisable /local_filesIf used in a
<Location>directive, @@ -550,7 +550,7 @@ CacheEnable disk http://.example.org/ CacheHeader on -X-Cache: HIT from localhost+X-Cache: HIT from localhost@@ -572,7 +572,7 @@ CacheHeader on tells the server to attempt to serve the resource from the cache even if the request contains no-cache header values. -CacheIgnoreCacheControl On+CacheIgnoreCacheControl On@@ -187,7 +187,7 @@ cache. définir la taille minimale d'un document, en octets, pour que celui-ci puisse faire l'objet d'un stockage dans le cache. -Warning:
@@ -624,10 +624,10 @@ CacheHeader on behaviour),CacheIgnoreHeaderscan be set toNone. -@@ -992,7 +992,7 @@ CacheStaleOnError on tells the server to attempt to cache the resource even if it contains no-store header values. -Example 1
CacheIgnoreHeaders Set-Cookie+-Example 1
CacheIgnoreHeaders Set-Cookie@@ -971,7 +971,7 @@ CacheStaleOnError on the origin server, and the response may be fulfilled from cache if the backend resource has not changed. -Example 2
CacheIgnoreHeaders None+Example 2
CacheIgnoreHeaders None@@ -683,7 +683,7 @@ header. view the request is treated as if having no query string when this directive is enabled. -Warning:
@@ -660,7 +660,7 @@ header.CacheDefaultExpiredirective will be used to generate an expiration date. -CacheIgnoreNoLastMod On+CacheIgnoreNoLastMod OnCacheIgnoreQueryString On+CacheIgnoreQueryString On@@ -715,10 +715,10 @@ header.-
CacheIgnoreURLSessionIdentifiers Noneclears the list of ignored identifiers. Otherwise, each identifier is added to the list.@@ -880,7 +880,7 @@ CacheLock on server. This is only used if no valid expire time was supplied with the document. -Example 1
CacheIgnoreURLSessionIdentifiers jsessionid+-Example 1
CacheIgnoreURLSessionIdentifiers jsessionid@@ -861,7 +861,7 @@ CacheLock on server. Thus, documents will be out of date at most this number of seconds. This maximum value is enforced even if an expiry date was supplied with the document. -Example 2
CacheIgnoreURLSessionIdentifiers None+@@ -782,7 +782,7 @@ LastModified date.Example 2
CacheIgnoreURLSessionIdentifiers NoneCacheMaxExpire, then the latter takes precedence. -CacheLastModifiedFactor 0.5+CacheLastModifiedFactor 0.5CacheMaxExpire 604800+CacheMaxExpire 604800CacheMinExpire 3600+CacheMinExpire 3600CacheStoreExpired On+CacheStoreExpired OnCacheStoreNoStore On+CacheStoreNoStore Ondiff --git a/docs/manual/mod/mod_cache_disk.html.fr b/docs/manual/mod/mod_cache_disk.html.fr index f65c3c2767f..e7e5bbda06c 100644 --- a/docs/manual/mod/mod_cache_disk.html.fr +++ b/docs/manual/mod/mod_cache_disk.html.fr @@ -168,7 +168,7 @@ cache. définir la taille maximale d'un document, en octets, pour que celui-ci puisse faire l'objet d'un stockage dans le cache. -Warning:
@@ -1025,7 +1025,7 @@ CacheStaleOnError on tells the server to attempt to cache the resource even if it contains private header values. -CacheStorePrivate On+CacheStorePrivate On@@ -461,7 +461,7 @@ sp spécifiée par chaîne URL, ainsi que les URLs de niveaux inférieurs. -Warning:
diff --git a/docs/manual/mod/mod_cache.html.fr b/docs/manual/mod/mod_cache.html.fr index 657aefcba09..ee52a91e3f9 100644 --- a/docs/manual/mod/mod_cache.html.fr +++ b/docs/manual/mod/mod_cache.html.fr @@ -352,7 +352,7 @@ AddOutputFilterByType INCLUDES;CACHE;DEFLATE text/html interne à la requête sous la clé cache-status. Cette information peut être journalisée via la directiveLogFormatcomme suit : -LogFormat "%{cache-status}e ..."+LogFormat "%{cache-status}e ..."En fonction de la décision prise, l'information est aussi écrite @@ -404,7 +404,7 @@ lorsqu'aucune date d'expiration n'a
-CacheMaxExpiresi cette dernière est utilisée.CacheDefaultExpire 86400+CacheDefaultExpire 86400@@ -253,7 +253,7 @@ stored a configuration file processing error. TheExemple
CacheDisable /fichiers_locaux+Exemple
CacheDisable /fichiers_locauxSi la directive se trouve à l'intérieur d'une section
<Location>, le chemin doit être spécifié en @@ -610,7 +610,7 @@ Apache CacheHeader on -X-Cache: HIT from localhost+X-Cache: HIT from localhost@@ -636,7 +636,7 @@ le contenu au client depuis le cache cache, même si la requête contient un en-tête no-cache. -CacheIgnoreCacheControl On+CacheIgnoreCacheControl On@@ -232,7 +232,7 @@ cache ensure that the server does not buffer excessively should data arrive faster than expected. -Avertissement :
@@ -692,10 +692,10 @@ le contenu au client depuis le cacheCacheIgnoreHeaderspeut être définie àNone. -@@ -202,7 +202,7 @@ cacheExemple 1
CacheIgnoreHeaders Set-Cookie+-Exemple 1
CacheIgnoreHeaders Set-Cookie@@ -176,7 +176,7 @@ cache minimum size, in bytes, for a document to be considered for storage in the cache. -Exemple 2
CacheIgnoreHeaders None+Exemple 2
CacheIgnoreHeaders None@@ -758,7 +758,7 @@ cache traitée comme si elle ne possèdait pas de chaîne de paramètres lorsque cette directive est activée. -Avertissement :
@@ -731,7 +731,7 @@ Modified. d'expiration. -CacheIgnoreNoLastMod On+CacheIgnoreNoLastMod OnCacheIgnoreQueryString On+CacheIgnoreQueryString On@@ -795,10 +795,10 @@ l'URL lors de la mise en cache des identifiants ignorés. Autrement, chaque identifiant spécifié est ajouté à la liste. -@@ -1077,7 +1077,7 @@ consid de la part du serveur d'origine, et la réponse sera renvoyée à partir du cache si la ressource d'arrière-plan n'a pas été modifiée. -Exemple 1
CacheIgnoreURLSessionIdentifiers jsessionid+-Exemple 1
CacheIgnoreURLSessionIdentifiers jsessionid@@ -955,7 +955,7 @@ document sera pas à jour. L'utilisation de cette valeur maximale est forcée, même si le document possède une date d'expiration. -Exemple 2
CacheIgnoreURLSessionIdentifiers None+@@ -866,7 +866,7 @@ fonction de la date de derni directiveExemple 2
CacheIgnoreURLSessionIdentifiers NoneCacheMaxExpire, c'est ce dernier qui l'emporte. -CacheLastModifiedFactor 0.5+CacheLastModifiedFactor 0.5CacheMaxExpire 604800+CacheMaxExpire 604800@@ -978,7 +978,7 @@ document que dans le cas où le document ne possède aucune date d'expiration valide. -CacheMinExpire 3600+CacheMinExpire 3600CacheStoreExpired On+CacheStoreExpired On@@ -1102,7 +1102,7 @@ l'ent un en-tête no-store. -CacheStoreNoStore On+CacheStoreNoStore On@@ -1142,7 +1142,7 @@ marqu contient un en-tête private. -CacheStorePrivate On+CacheStorePrivate Ondiff --git a/docs/manual/mod/mod_cache_disk.html.en b/docs/manual/mod/mod_cache_disk.html.en index 8f23545cc58..8fc749b3e4d 100644 --- a/docs/manual/mod/mod_cache_disk.html.en +++ b/docs/manual/mod/mod_cache_disk.html.en @@ -157,7 +157,7 @@ cache maximum size, in bytes, for a document to be considered for storage in the cache. -CacheMaxFileSize 64000+CacheMaxFileSize 64000CacheMinFileSize 64+CacheMinFileSize 64This directive only takes effect when the data is being saved to the cache, as opposed to data being served from the cache.
-CacheReadSize 102400+CacheReadSize 102400CacheReadTime 1000+CacheReadTime 1000CacheDirLevelsandCacheDirLengthdirectives define the structure of the directories under the specified root directory. -CacheRoot c:/cacheroot+CacheRoot c:/cacherootCacheMaxFileSize 64000+CacheMaxFileSize 64000CacheMinFileSize 64+CacheMinFileSize 64CacheReadSize 102400+CacheReadSize 102400CacheReadTime 1000+CacheReadTime 1000CacheRoot c:/cacheroot+CacheRoot c:/cacherootCacheSocache shmcb+CacheSocache shmcbmod_cache_socache. -CacheSocacheMaxSize 102400+CacheSocacheMaxSize 102400@@ -149,7 +149,7 @@ cache the cache. This value overrides the freshness lifetime defined for the document by the HTTP protocol. -CacheSocacheMaxTime 86400+CacheSocacheMaxTime 86400@@ -171,7 +171,7 @@ cache only stored for its freshness lifetime, there will be no opportunity to revalidate the response to make it fresh again. -CacheSocacheMinTime 600+CacheSocacheMinTime 600@@ -198,7 +198,7 @@ cacheThis directive only takes effect when the data is being saved to the cache, as opposed to data being served from the cache.
-CacheReadSize 102400+CacheReadSize 102400@@ -229,7 +229,7 @@ cache to ensure that the server does not buffer excessively should data arrive faster than expected. -CacheSocacheReadTime 1000+CacheSocacheReadTime 1000diff --git a/docs/manual/mod/mod_cache_socache.html.fr b/docs/manual/mod/mod_cache_socache.html.fr index 7188d4faf21..d9606bfc871 100644 --- a/docs/manual/mod/mod_cache_socache.html.fr +++ b/docs/manual/mod/mod_cache_socache.html.fr @@ -102,7 +102,7 @@ Apache possible de choisir entre plusieurs implémentations de caches d'objets partagés. -CacheSocache shmcb+CacheSocache shmcb@@ -133,7 +133,7 @@ Apache la taille est trop importante pour pouvoir être mises en cache parmod_cache_socache. -CacheSocacheMaxSize 102400+CacheSocacheMaxSize 102400@@ -155,7 +155,7 @@ Apache le cache avant péremption. Cette définition l'emporte sur la durée de fraîcheur définie pour le document par le protocole HTTP. -CacheSocacheMaxTime 86400+CacheSocacheMaxTime 86400@@ -178,7 +178,7 @@ Apache pour une durée égale à sa durée de fraîcheur, elle n'a pas besoin d'être rafraîchie. -CacheSocacheMinTime 600+CacheSocacheMinTime 600@@ -209,7 +209,7 @@ Apache stockées dans le cache, et non lorsqu'elles sont servies depuis le cache. -CacheReadSize 102400+CacheReadSize 102400@@ -242,7 +242,7 @@ Apache manière excessive dans le cas où les données arriveraient plus vite que prévu. -CacheSocacheReadTime 1000+CacheSocacheReadTime 1000diff --git a/docs/manual/mod/mod_cern_meta.html.en b/docs/manual/mod/mod_cern_meta.html.en index 710afdbdff0..f8668b9ed00 100644 --- a/docs/manual/mod/mod_cern_meta.html.en +++ b/docs/manual/mod/mod_cern_meta.html.en @@ -119,7 +119,7 @@ meta information will use its contents to generate additional MIME header information. -diff --git a/docs/manual/mod/mod_cern_meta.html.fr b/docs/manual/mod/mod_cern_meta.html.fr index efa3772b17b..2c861b2bff0 100644 --- a/docs/manual/mod/mod_cern_meta.html.fr +++ b/docs/manual/mod/mod_cern_meta.html.fr @@ -124,7 +124,7 @@ style du CERN son contenu pour générer les informations quant aux en-têtes MIME additionnels. -Example:
MetaSuffix .meta+Example:
MetaSuffix .metadiff --git a/docs/manual/mod/mod_cgi.html.en b/docs/manual/mod/mod_cgi.html.en index afd65139a17..165fc0a7122 100644 --- a/docs/manual/mod/mod_cgi.html.en +++ b/docs/manual/mod/mod_cgi.html.en @@ -178,7 +178,7 @@ taken relative to theExemple :
MetaSuffix .meta+Exemple :
MetaSuffix .metaServerRoot. -Example
ScriptLog logs/cgi_log+Example
ScriptLog logs/cgi_logThis log will be opened as the user the child processes run diff --git a/docs/manual/mod/mod_cgi.html.fr b/docs/manual/mod/mod_cgi.html.fr index 8da611652dc..3d6a66f385f 100644 --- a/docs/manual/mod/mod_cgi.html.fr +++ b/docs/manual/mod/mod_cgi.html.fr @@ -190,7 +190,7 @@ CGI répertoire défini par la directive
-ServerRoot.Exemple
ScriptLog logs/cgi_log+Exemple
ScriptLog logs/cgi_logCe journal sera ouvert par l'utilisateur sous lequel les diff --git a/docs/manual/mod/mod_cgid.html.en b/docs/manual/mod/mod_cgid.html.en index dd4b9c7000d..80e0d5a5972 100644 --- a/docs/manual/mod/mod_cgid.html.en +++ b/docs/manual/mod/mod_cgid.html.en @@ -93,7 +93,7 @@ unset the CGI program. If the time is exceeded, the request and CGI are terminated.
-Example
CGIDScriptTimeout 20+@@ -121,7 +121,7 @@ the cgi daemon will be relative to the value ofExample
CGIDScriptTimeout 20DefaultRuntimeDir. -Example
ScriptSock /var/run/cgid.sock+diff --git a/docs/manual/mod/mod_cgid.html.fr b/docs/manual/mod/mod_cgid.html.fr index 84c710300c1..d53b227485c 100644 --- a/docs/manual/mod/mod_cgid.html.fr +++ b/docs/manual/mod/mod_cgid.html.fr @@ -97,7 +97,7 @@ programme CGI reçues en sortie du programme CGI. Si ce temps est dépassé, la requête et le programme CGI se terminent. -Example
ScriptSock /var/run/cgid.sockExemple
CGIDScriptTimeout 20+@@ -125,7 +125,7 @@ communiquer avec le dExemple
CGIDScriptTimeout 20Si chemin fichier n'est pas un chemin absolu, il est relatif au chemin défini par la directive
-DefaultRuntimeDir.Exemple
ScriptSock /var/run/cgid.sock+diff --git a/docs/manual/mod/mod_dav.html.en b/docs/manual/mod/mod_dav.html.en index a6c0ce6470c..0086772fbb5 100644 --- a/docs/manual/mod/mod_dav.html.en +++ b/docs/manual/mod/mod_dav.html.en @@ -78,7 +78,7 @@ file using theExemple
ScriptSock /var/run/cgid.sockDavLockDBdirective: -DavLockDB /usr/local/apache2/var/DavLock+DavLockDB /usr/local/apache2/var/DavLockThe directory containing the lock database file must be diff --git a/docs/manual/mod/mod_dav.html.fr b/docs/manual/mod/mod_dav.html.fr index aa02dd949eb..c8c801ed222 100644 --- a/docs/manual/mod/mod_dav.html.fr +++ b/docs/manual/mod/mod_dav.html.fr @@ -79,7 +79,7 @@ documents via le web (WebDAV) verrous DAV via une directive
-DavLockDBdans la section globale de votre fichierhttpd.conf:DavLockDB /usr/local/apache2/var/DavLock+DavLockDB /usr/local/apache2/var/DavLockLe répertoire contenant le fichier de la base de données des diff --git a/docs/manual/mod/mod_dav_fs.html.en b/docs/manual/mod/mod_dav_fs.html.en index f6350bc4be2..8c63fe06df0 100644 --- a/docs/manual/mod/mod_dav_fs.html.en +++ b/docs/manual/mod/mod_dav_fs.html.en @@ -41,7 +41,7 @@ will be invoked by using the
-Davdirective:Example
Dav filesystem+Example
Dav filesystemSince
filesystemis the default provider for @@ -74,7 +74,7 @@ -Example
DavLockDB var/DavLock+Example
DavLockDB var/DavLockThe directory containing the lock database file must be diff --git a/docs/manual/mod/mod_dav_fs.html.fr b/docs/manual/mod/mod_dav_fs.html.fr index 44da75d63f3..a11a6190272 100644 --- a/docs/manual/mod/mod_dav_fs.html.fr +++ b/docs/manual/mod/mod_dav_fs.html.fr @@ -43,7 +43,7 @@ de
-mod_davsont invoqués via la directiveDav:Exemple
Dav filesystem+Exemple
Dav filesystemComme
filesystemest le fournisseur par défaut de @@ -77,7 +77,7 @@ -Exemple
DavLockDB var/DavLock+Exemple
DavLockDB var/DavLockLes utilisateur et groupe sous lesquels Apache s'exécute et qui diff --git a/docs/manual/mod/mod_dav_lock.html.en b/docs/manual/mod/mod_dav_lock.html.en index 1daf4113fd1..d4fd6bff9e8 100644 --- a/docs/manual/mod/mod_dav_lock.html.en +++ b/docs/manual/mod/mod_dav_lock.html.en @@ -79,7 +79,7 @@
-mod_dav_lockuses a SDBM database to track user locks.Example
DavGenericLockDB var/DavLock+Example
DavGenericLockDB var/DavLockThe directory containing the lock database file must be diff --git a/docs/manual/mod/mod_dav_lock.html.fr b/docs/manual/mod/mod_dav_lock.html.fr index 9959f8c0ea2..974f3c0519b 100644 --- a/docs/manual/mod/mod_dav_lock.html.fr +++ b/docs/manual/mod/mod_dav_lock.html.fr @@ -85,7 +85,7 @@
-mod_dav_lockutilise une base de données SDBM pour surveiller les verrous utilisateurs.Exemple
DavGenericLockDB var/DavLock+Exemple
DavGenericLockDB var/DavLockLes utilisateur et groupe sous lesquels Apache s'exécute et qui diff --git a/docs/manual/mod/mod_deflate.html.en b/docs/manual/mod/mod_deflate.html.en index 6410b8d8f05..76a2e7bc43c 100644 --- a/docs/manual/mod/mod_deflate.html.en +++ b/docs/manual/mod/mod_deflate.html.en @@ -68,7 +68,7 @@ client
This is a simple configuration that compresses common text-based content types.
-@@ -172,7 +172,7 @@ SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip in a typical configuration where the addition of theCompress only a few types
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript+Compress only a few types
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascriptDEFLATEfilter depends on theUser-Agent, you should add: -Header append Vary User-Agent+Header append Vary User-AgentIf your decision about compression depends on other information @@ -180,7 +180,7 @@ SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip
-Varyheader to the value*. This prevents compliant proxies from caching entirely.diff --git a/docs/manual/mod/mod_deflate.html.fr b/docs/manual/mod/mod_deflate.html.fr index 45714e37589..5e8b7c40656 100644 --- a/docs/manual/mod/mod_deflate.html.fr +++ b/docs/manual/mod/mod_deflate.html.fr @@ -69,7 +69,7 @@ clientExample
Header set Vary *+Example
Header set Vary *Voici un exemple simple de configuration qui permet de comprimer les types de contenu à base de texte.
-@@ -186,7 +186,7 @@ SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzipNe comprime que certains types de documents
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascript+Ne comprime que certains types de documents
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css text/javascript application/javascriptDEFLATEdépend du contenu de l'en-têteUser-Agent, vous devez spécifier : -Header append Vary User-Agent+Header append Vary User-AgentSi votre décision de comprimer le contenu dépend d'autres @@ -195,7 +195,7 @@ SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip
-Varyla valeur*, ce qui permet d'empêcher les mandataires compatibles de tout mettre en cache.diff --git a/docs/manual/mod/mod_dir.html.en b/docs/manual/mod/mod_dir.html.en index 36f9b8f0dbd..b5ebafab60f 100644 --- a/docs/manual/mod/mod_dir.html.en +++ b/docs/manual/mod/mod_dir.html.en @@ -120,7 +120,7 @@ a directory set, the server will generate its own listing of the directory. -Exemple
Header set Vary *+Exemple
Header set Vary *Example
DirectoryIndex index.html+Example
DirectoryIndex index.htmlthen a request for
http://example.com/docs/would @@ -130,7 +130,7 @@ a directoryNote that the documents do not need to be relative to the directory;
-DirectoryIndex index.html index.txt /cgi-bin/index.pl+DirectoryIndex index.html index.txt /cgi-bin/index.plwould cause the CGI script
/cgi-bin/index.plto be @@ -198,7 +198,7 @@ a directory -Example
DirectoryIndexRedirect on+Example
DirectoryIndexRedirect onA request for
http://example.com/docs/would @@ -274,7 +274,7 @@ a directoryUse this to set a handler for any URL that doesn't map to anything in your filesystem, and would otherwise return HTTP 404 (Not Found). For example
-FallbackResource /not-404.php+FallbackResource /not-404.phpwill cause requests for non-existent files to be handled by
-not-404.php, while requests for files that exist @@ -287,7 +287,7 @@ a directorymod_rewrite, and the use of the-fand-dtests for file and directory existence. This now requires only one line of configuration.FallbackResource /index.php+FallbackResource /index.phpExisting files, such as images, css files, and so on, will be served normally.
diff --git a/docs/manual/mod/mod_dir.html.fr b/docs/manual/mod/mod_dir.html.fr index 2e1a6f2cad4..3f7609c4924 100644 --- a/docs/manual/mod/mod_dir.html.fr +++ b/docs/manual/mod/mod_dir.html.fr @@ -127,7 +127,7 @@ client envoie une requIndexesest définie, le serveur générera son propre listing du répertoire. -Exemple
DirectoryIndex index.html+Exemple
DirectoryIndex index.htmlAvec cette configuration, une requête pour l'URL @@ -139,7 +139,7 @@ client envoie une requ
Notez qu'il n'est pas nécessaire que les documents soient relatifs au répertoire ;
-DirectoryIndex index.html index.txt /cgi-bin/index.pl+DirectoryIndex index.html index.txt /cgi-bin/index.plprovoquerait l'exécution du script CGI @@ -215,7 +215,7 @@ r -
@@ -78,7 +78,7 @@Exemple
DirectoryIndexRedirect on+Exemple
DirectoryIndexRedirect onUne requête pour
-http://example.com/docs/se @@ -306,7 +306,7 @@ aucun fichier et qui provoquerait sans cela l'envoi d'un code d'erreur HTTP 404 (Not Found). Par exempleFallbackResource /not-404.php+FallbackResource /not-404.phpfait en sorte que les requêtes ne correspondant à aucun fichier soient traitées par
-non-404.php, sans affecter les @@ -321,7 +321,7 @@ aucun fichier conditionnels-fet-dpour vérifier l'existence des fichiers et répertoires. Maintenant, une seule ligne de configuration est nécessaire.FallbackResource /index.php+FallbackResource /index.phpLes fichiers existants comme des images, des fichiers css, etc... seront traités normalement.
diff --git a/docs/manual/mod/mod_dumpio.html.en b/docs/manual/mod/mod_dumpio.html.en index 403ff6f9837..a9abaacb4ae 100644 --- a/docs/manual/mod/mod_dumpio.html.en +++ b/docs/manual/mod/mod_dumpio.html.en @@ -63,7 +63,7 @@ the below directives. Additionally,mod_dumpioneeds to be configured toLogLeveltrace7: -LogLevel dumpio:trace7+LogLevel dumpio:trace7Enable dumping of all input.
-@@ -94,7 +94,7 @@Example
DumpIOInput On+Example
DumpIOInput OnEnable dumping of all output.
-diff --git a/docs/manual/mod/mod_echo.html.en b/docs/manual/mod/mod_echo.html.en index 77bdbb61965..a56ead57924 100644 --- a/docs/manual/mod/mod_echo.html.en +++ b/docs/manual/mod/mod_echo.html.en @@ -59,7 +59,7 @@ modulesExample
DumpIOOutput On+Example
DumpIOOutput OnThe
-ProtocolEchodirective enables or disables the echo server.diff --git a/docs/manual/mod/mod_echo.html.fr b/docs/manual/mod/mod_echo.html.fr index 31f6aa37c84..c20ee8f656e 100644 --- a/docs/manual/mod/mod_echo.html.fr +++ b/docs/manual/mod/mod_echo.html.fr @@ -59,7 +59,7 @@ protocoleExample
ProtocolEcho On+Example
ProtocolEcho OnLa directive
-ProtocolEchopermet d'activer ou de désactiver le serveur d'écho.diff --git a/docs/manual/mod/mod_env.html.en b/docs/manual/mod/mod_env.html.en index 77199b21ebe..cb506f04d0e 100644 --- a/docs/manual/mod/mod_env.html.en +++ b/docs/manual/mod/mod_env.html.en @@ -73,7 +73,7 @@ SSI pages native OS environment of the shell which invoked theExemple
ProtocolEcho On+Exemple
ProtocolEcho Onhttpdprocess. -@@ -90,7 +90,7 @@ SSI pagesExample
PassEnv LD_LIBRARY_PATH+Example
PassEnv LD_LIBRARY_PATHSets an internal environment variable, which is then available to Apache HTTP Server modules, and passed on to CGI scripts and SSI pages.
-diff --git a/docs/manual/mod/mod_isapi.html.en b/docs/manual/mod/mod_isapi.html.en index f95d17b5a16..8ddb0f0d6e5 100644 --- a/docs/manual/mod/mod_isapi.html.en +++ b/docs/manual/mod/mod_isapi.html.en @@ -71,7 +71,7 @@ it to them with their file extensions. To enable any .dll file to be processed as an ISAPI extension, edit the httpd.conf file and add the following line: -Example
SetEnv SPECIAL_PATH /foo/bin+Example
SetEnv SPECIAL_PATH /foo/binIf you omit the value argument, the variable is set to @@ -125,7 +125,7 @@ SSI pages
Removes one or more internal environment variables from those passed on to CGI scripts and SSI pages.
-diff --git a/docs/manual/mod/mod_env.html.fr b/docs/manual/mod/mod_env.html.fr index e6ce3b852b3..ba6c6487201 100644 --- a/docs/manual/mod/mod_env.html.fr +++ b/docs/manual/mod/mod_env.html.fr @@ -77,7 +77,7 @@ shell valeurs sont issues de l'environnement natif de l'OS associé au shell qui a invoqué le processusExample
UnsetEnv LD_LIBRARY_PATH+Example
UnsetEnv LD_LIBRARY_PATHhttpd. -@@ -95,7 +95,7 @@ shell ensuite disponible pour les modules du serveur HTTP Apache et transmise aux scripts CGI et aux pages SSI. -Exemple
PassEnv LD_LIBRARY_PATH+Exemple
PassEnv LD_LIBRARY_PATH@@ -966,7 +966,7 @@ server. output of a file each processing different commands (possibly at different times). -Exemple
SetEnv SPECIAL_PATH /foo/bin+Exemple
SetEnv SPECIAL_PATH /foo/binSi l'argument valeur est absent, la variable est @@ -132,7 +132,7 @@ shell
Supprime une ou plusieurs variables d'environnement internes parmi celles qui sont transmises aux scripts CGI et aux pages SSI.
-diff --git a/docs/manual/mod/mod_example.html.en b/docs/manual/mod/mod_example.html.en index 9e612830904..b01415f5e83 100644 --- a/docs/manual/mod/mod_example.html.en +++ b/docs/manual/mod/mod_example.html.en @@ -121,7 +121,7 @@Exemple
UnsetEnv LD_LIBRARY_PATH+Exemple
UnsetEnv LD_LIBRARY_PATHAs an alternative, you can put the following into a
-.htaccessfile and then request the file "test.example" from that location:AddHandler example-handler .example+AddHandler example-handler .exampleAfter reloading/restarting your server, you should be able diff --git a/docs/manual/mod/mod_example.html.fr b/docs/manual/mod/mod_example.html.fr index fb6aaa7ebf4..8da0f258a26 100644 --- a/docs/manual/mod/mod_example.html.fr +++ b/docs/manual/mod/mod_example.html.fr @@ -132,7 +132,7 @@ accéder au fichier "test.example" à partir du répertoire correspondant :
-AddHandler example-handler .example+AddHandler example-handler .examplediff --git a/docs/manual/mod/mod_ext_filter.html.en b/docs/manual/mod/mod_ext_filter.html.en index e7a196da3bb..cfcffa1b8f1 100644 --- a/docs/manual/mod/mod_ext_filter.html.en +++ b/docs/manual/mod/mod_ext_filter.html.en @@ -315,7 +315,7 @@ close(SAVE); filter is removed and the request continues without it. -ExtFilterOptions LogStderr+ExtFilterOptions LogStderrMessages written to the filter's standard error will be stored diff --git a/docs/manual/mod/mod_ext_filter.html.fr b/docs/manual/mod/mod_ext_filter.html.fr index 4d782b71cc0..6765649eeea 100644 --- a/docs/manual/mod/mod_ext_filter.html.fr +++ b/docs/manual/mod/mod_ext_filter.html.fr @@ -335,7 +335,7 @@ close(SAVE); sans lui. -
ExtFilterOptions LogStderr+ExtFilterOptions LogStderrLes messages envoyés vers la sortie d'erreurs standard du filtre diff --git a/docs/manual/mod/mod_file_cache.html.en b/docs/manual/mod/mod_file_cache.html.en index af31b47abe4..b5307d8c856 100644 --- a/docs/manual/mod/mod_file_cache.html.en +++ b/docs/manual/mod/mod_file_cache.html.en @@ -169,7 +169,7 @@ with filenames rewritten by
-mod_aliasormod_rewrite.@@ -198,7 +198,7 @@ with filenames rewritten byExample
CacheFile /usr/local/apache/htdocs/index.html+Example
CacheFile /usr/local/apache/htdocs/index.htmlmod_aliasormod_rewrite. -diff --git a/docs/manual/mod/mod_file_cache.html.fr b/docs/manual/mod/mod_file_cache.html.fr index fa85edd7c3b..877c81aa4da 100644 --- a/docs/manual/mod/mod_file_cache.html.fr +++ b/docs/manual/mod/mod_file_cache.html.fr @@ -197,7 +197,7 @@ d fichiers réécrits parExample
MMapFile /usr/local/apache/htdocs/index.html+Example
MMapFile /usr/local/apache/htdocs/index.htmlmod_aliasoumod_rewrite. -@@ -230,7 +230,7 @@ m fichiers réécrits parExemple
CacheFile /usr/local/apache/htdocs/index.html+Exemple
CacheFile /usr/local/apache/htdocs/index.htmlmod_aliasoumod_rewrite. -diff --git a/docs/manual/mod/mod_filter.html.en b/docs/manual/mod/mod_filter.html.en index 9a1b3d238c5..d50568d120a 100644 --- a/docs/manual/mod/mod_filter.html.en +++ b/docs/manual/mod/mod_filter.html.en @@ -279,7 +279,7 @@ being moved toExemple
MMapFile /usr/local/apache/htdocs/index.html+Exemple
MMapFile /usr/local/apache/htdocs/index.htmlmod_filter<text/htmlortext/plainbefore it is sent to the client. -AddOutputFilterByType DEFLATE text/html text/plain+AddOutputFilterByType DEFLATE text/html text/plainIf you want the content to be processed by more than one filter, their diff --git a/docs/manual/mod/mod_firehose.html.en b/docs/manual/mod/mod_firehose.html.en index d0ffb15f2d7..503341e3012 100644 --- a/docs/manual/mod/mod_firehose.html.en +++ b/docs/manual/mod/mod_firehose.html.en @@ -175,7 +175,7 @@ later. requests will be captured within the same connection if keepalive is present.
-@@ -195,7 +195,7 @@ later. Multiple requests will be captured within the same connection if keepalive is present. -Example
FirehoseConnectionInput connection-input.firehose+Example
FirehoseConnectionInput connection-input.firehose@@ -213,7 +213,7 @@ later.Example
FirehoseConnectionOutput connection-output.firehose+Example
FirehoseConnectionOutput connection-output.firehoseCapture traffic being received by mod_proxy.
-@@ -231,7 +231,7 @@ later.Example
FirehoseProxyConnectionInput proxy-input.firehose+Example
FirehoseProxyConnectionInput proxy-input.firehoseCapture traffic being sent out by mod_proxy.
-@@ -250,7 +250,7 @@ later.Example
FirehoseProxyConnectionOutput proxy-output.firehose+Example
FirehoseProxyConnectionOutput proxy-output.firehoseCapture traffic coming into the server on each request. Requests will be captured separately, regardless of the presence of keepalive.
-@@ -269,7 +269,7 @@ later.Example
FirehoseRequestInput request-input.firehose+Example
FirehoseRequestInput request-input.firehoseCapture traffic going out of the server on each request. Requests will be captured separately, regardless of the presence of keepalive.
-diff --git a/docs/manual/mod/mod_headers.html.en b/docs/manual/mod/mod_headers.html.en index 3731b5dcccd..0fb21eb2eb4 100644 --- a/docs/manual/mod/mod_headers.html.en +++ b/docs/manual/mod/mod_headers.html.en @@ -99,7 +99,7 @@ RequestHeader unset MirrorID Copy all request headers that begin with "TS" to the response headers: -Example
FirehoseRequestOutput request-output.firehose+Example
FirehoseRequestOutput request-output.firehoseHeader echo ^TS+Header echo ^TS@@ -110,7 +110,7 @@ RequestHeader unset MirrorID the client to intuit load on the server or in isolating bottlenecks between the client and the server. -Header set MyHeader "%D %t"+Header set MyHeader "%D %t"results in this header being added to the response:
@@ -159,7 +159,7 @@ Header set MyHeader "%D %t mytext" env=HAVE_MyRequestHeader description) by replacing https: with http: in the Destination header: -RequestHeader edit Destination ^https: http: early+RequestHeader edit Destination ^https: http: early@@ -191,7 +191,7 @@ Header merge Cache-Control no-store env=NO_STORE- Set a test cookie if and only if the client didn't send us a cookie -
diff --git a/docs/manual/mod/mod_headers.html.fr b/docs/manual/mod/mod_headers.html.fr index 65fe6b692b9..aedc36b7371 100644 --- a/docs/manual/mod/mod_headers.html.fr +++ b/docs/manual/mod/mod_headers.html.fr @@ -109,7 +109,7 @@ tardif Copie tous les en-têtes de requête qui commencent par "TS" vers les en-têtes de la réponse : -Header set Set-Cookie testcookie "expr=-z %{req:Cookie}"+Header set Set-Cookie testcookie "expr=-z %{req:Cookie}"Header echo ^TS+Header echo ^TS@@ -122,7 +122,7 @@ tardif isoler les goulets d'étranglement entre le client et le serveur. -Header set mon-en-tête "%D %t"+Header set mon-en-tête "%D %t"le résultat est l'ajout à la réponse d'un en-tête du type :
@@ -173,7 +173,7 @@ Header set MyHeader "%D %t mytext" env=HAVE_MyRequestHeader du problème) en remplaçant https: par http: dans l'en-tête Destination : -RequestHeader edit Destination ^https: http: early+RequestHeader edit Destination ^https: http: early@@ -208,7 +208,7 @@ Header merge Cache-Control no-store env=NO_STORE- Définit un cookie de test si et seulement si le client n'envoie pas de cookie -
diff --git a/docs/manual/mod/mod_heartmonitor.html.en b/docs/manual/mod/mod_heartmonitor.html.en index 81a7faf403b..d6ead949427 100644 --- a/docs/manual/mod/mod_heartmonitor.html.en +++ b/docs/manual/mod/mod_heartmonitor.html.en @@ -77,7 +77,7 @@ useHeader set Set-Cookie testcookie "expr=-z %{req:Cookie}"+Header set Set-Cookie testcookie "expr=-z %{req:Cookie}"mod_slotmem_shm address will usually correspond to a configuredHeartbeatAddresson an origin server. -HeartbeatListen 239.0.0.1:27999+HeartbeatListen 239.0.0.1:27999This module is inactive until this directive is used.
diff --git a/docs/manual/mod/mod_include.html.en b/docs/manual/mod/mod_include.html.en index bc8935ca834..7483e48e176 100644 --- a/docs/manual/mod/mod_include.html.en +++ b/docs/manual/mod/mod_include.html.en @@ -91,7 +91,7 @@ AddOutputFilter INCLUDES .shtmlAllowOverrideOptionsis set): -Options +Includes+Options +IncludesFor backwards compatibility, the
server-parsed@@ -815,7 +815,7 @@ AddOutputFilter INCLUDES .shtmlThis directive changes the string that
-mod_includelooks for to mark the end of an include element.SSIEndTag "%>"+SSIEndTag "%>"@@ -846,7 +846,7 @@ directive]"This directive has the same effect as the
-<!--#config errmsg=message -->element.SSIErrorMsg "<!-- Error -->"+SSIErrorMsg "<!-- Error -->"SSIStartTag "<%"
+SSIStartTag "<%"@@ -1004,7 +1004,7 @@ displayed
SSIEndTag "%>"This directive has the same effect as the
-<!--#config timefmt=formatstring -->element.SSITimeFormat "%R, %B %d, %Y"+SSITimeFormat "%R, %B %d, %Y"The above directive would cause times to be displayed in the @@ -1025,7 +1025,7 @@ displayed
This directive changes the string that
-mod_includedisplays when a variable is not set and "echoed".SSIUndefinedEcho "<!-- undef -->"+SSIUndefinedEcho "<!-- undef -->"AddHandler isapi-handler .dll+AddHandler isapi-handler .dllIn older versions of the Apache server, @@ -85,7 +85,7 @@ requested module loaded. However, you may preload and keep a specific module loaded by using the following syntax in your httpd.conf: -ISAPICacheFile c:/WebWork/Scripts/ISAPI/mytest.dll+ISAPICacheFile c:/WebWork/Scripts/ISAPI/mytest.dllWhether or not you have preloaded an ISAPI extension, all diff --git a/docs/manual/mod/mod_log_config.html.en b/docs/manual/mod/mod_log_config.html.en index fb96dd47de6..0bc6c143fb2 100644 --- a/docs/manual/mod/mod_log_config.html.en +++ b/docs/manual/mod/mod_log_config.html.en @@ -493,7 +493,7 @@ CustomLog referer.log referer env=!localreferer to define another nickname. Note that the nickname should not contain percent signs (
-%).Example
LogFormat "%v %h %l %u %t \"%r\" %>s %b" vhost_common+diff --git a/docs/manual/mod/mod_log_debug.html.en b/docs/manual/mod/mod_log_debug.html.en index 7d8e49803ee..c9a34c53911 100644 --- a/docs/manual/mod/mod_log_debug.html.en +++ b/docs/manual/mod/mod_log_debug.html.en @@ -68,7 +68,7 @@Example
LogFormat "%v %h %l %u %t \"%r\" %>s %b" vhost_common- Log message if an IPv6 client causes a request timeout: -
diff --git a/docs/manual/mod/mod_lua.html.en b/docs/manual/mod/mod_lua.html.en index f1d1bd6719d..64e81e36253 100644 --- a/docs/manual/mod/mod_lua.html.en +++ b/docs/manual/mod/mod_lua.html.en @@ -100,7 +100,7 @@ trust, as it can be abused to change the internal workings of httpd.LogMessage "IPv6 timeout from %{REMOTE_ADDR}" "expr=-T %{IPV6} && %{REQUEST_STATUS} = 408"+LogMessage "IPv6 timeout from %{REMOTE_ADDR}" "expr=-T %{IPV6} && %{REQUEST_STATUS} = 408"Note the placing of the double quotes for theexpr=argument.The basic module loading directive is
-LoadModule lua_module modules/mod_lua.so+LoadModule lua_module modules/mod_lua.so@@ -1096,7 +1096,7 @@ end To utilize
-mod_dbd, specifymod_dbdas the database type, or leave the field blank:local database = r:dbacquire("mod_dbd")+local database = r:dbacquire("mod_dbd")Database object and contained functions
@@ -1443,7 +1443,7 @@ endLike
-LuaHookTranslateNamebut executed at the map-to-storage phase of a request. Modules like mod_cache run at this phase, which makes for an interesting example on what to do here:LuaHookMapToStorage /path/to/lua/script.lua check_cache+LuaHookMapToStorage /path/to/lua/script.lua check_cacherequire"apache2" cached_files = {} @@ -1542,7 +1542,7 @@ endThis phase is where requests are assigned a content type and a handler, and thus can be used to modify the type and handler based on input: -LuaHookTypeChecker /path/to/lua/script.lua type_checker+LuaHookTypeChecker /path/to/lua/script.lua type_checkerfunction type_checker(r) if r.uri:match("%.to_gif$") then -- match foo.png.to_gif @@ -1648,14 +1648,14 @@ filters" for more information. match groups into both the file path and the function name. Be careful writing your regular expressions to avoid security issues. -Examples:
LuaMapHandler /(\w+)/(\w+) /scripts/$1.lua handle_$2+Examples:
LuaMapHandler /(\w+)/(\w+) /scripts/$1.lua handle_$2This would match uri's such as /photos/show?id=9 to the file /scripts/photos.lua and invoke the handler function handle_show on the lua vm after loading that file.
-LuaMapHandler /bingo /scripts/wombat.lua+LuaMapHandler /bingo /scripts/wombat.luaThis would invoke the "handle" function, which is the default if no specific function name is diff --git a/docs/manual/mod/mod_lua.html.fr b/docs/manual/mod/mod_lua.html.fr index db084093e71..51ab115934b 100644 --- a/docs/manual/mod/mod_lua.html.fr +++ b/docs/manual/mod/mod_lua.html.fr @@ -106,7 +106,7 @@ fonctionnement interne de httpd.
La directive de base pour le chargement du module est
-LoadModule lua_module modules/mod_lua.so+LoadModule lua_module modules/mod_lua.so@@ -1197,7 +1197,7 @@ end
-mod_dbdcomme type de base de données, ou laissez le champ vide :local database = r:dbacquire("mod_dbd")+local database = r:dbacquire("mod_dbd")L'objet database et ses méthodes
@@ -1586,7 +1586,7 @@ traitement de la requ phase map-to-storage du traitement de la requête. Les modules comme mod_cache agissent pendant cette phase, ce qui permet de présenter un exemple intéressant de ce que l'on peut faire ici : -LuaHookMapToStorage /path/to/lua/script.lua check_cache+LuaHookMapToStorage /path/to/lua/script.lua check_cacherequire"apache2" cached_files = {} @@ -1787,14 +1787,14 @@ filtres Lua" pour plus de d d'interpolation dans le chemin du fichier et le nom de la fonction. Prenez garde aux problèmes de sécurité en écrivant vos expressions rationnelles. --Exemples :
LuaMapHandler /(\w+)/(\w+) /scripts/$1.lua handle_$2+Exemples :
LuaMapHandler /(\w+)/(\w+) /scripts/$1.lua handle_$2Cette directive va faire correspondre des uri comme /photos/show?id=9 au fichier /scripts/photos.lua, et invoquera la fonction de gestionnaire handle_show au niveau de la vm lua après chargement de ce fichier.
-LuaMapHandler /bingo /scripts/wombat.lua+LuaMapHandler /bingo /scripts/wombat.luaCette directive invoquera la fonction "handle" qui est la valeur par défaut si aucun nom de fonction spécifique n'est diff --git a/docs/manual/mod/mod_mime.html.en b/docs/manual/mod/mod_mime.html.en index 2f0ad51dc28..bb7f7a608ac 100644 --- a/docs/manual/mod/mod_mime.html.en +++ b/docs/manual/mod/mod_mime.html.en @@ -361,7 +361,7 @@ handler activate CGI scripts with the file extension
-.cgi, you might use:AddHandler cgi-script .cgi+AddHandler cgi-script .cgiOnce that has been put into your httpd.conf file, any file containing @@ -492,7 +492,7 @@ responses from the server
-.shtmlfiles for server-side includes and will then compress the output usingmod_deflate.AddOutputFilter INCLUDES;DEFLATE shtml+AddOutputFilter INCLUDES;DEFLATE shtmlIf more than one filter is specified, they must be separated @@ -562,12 +562,12 @@ type
TypesConfigfile.Example
AddType image/gif .gif+Example
AddType image/gif .gifOr, to specify multiple file extensions in one directive:
-Example
AddType image/jpeg jpeg jpg jpe+Example
AddType image/jpeg jpeg jpg jpeThe extension argument is case-insensitive and can @@ -580,7 +580,7 @@ type can be achieved by qualifying a media-type with
-qs:Example
AddType application/rss+xml;qs=0.8 .xml+Example
AddType application/rss+xml;qs=0.8 .xmlThis is useful in situations, e.g. when a client @@ -627,7 +627,7 @@ assigned a language-tag by some other means. by
-AddLanguage, then no Content-Language header field will be generated.Example
DefaultLanguage en+Example
DefaultLanguage enSee also
@@ -654,7 +654,7 @@ components as part of the filenameThis directive is recommended when you have a virtual filesystem.
-Example
ModMimeUsePathInfo On+Example
ModMimeUsePathInfo OnIf you have a request for
-/index.php/foo.shtml@@ -718,7 +718,7 @@ a matching file with MultiViews and filters to participate in Multviews, but will exclude unknown files:MultiviewsMatch Handlers Filters+MultiviewsMatch Handlers Filters
MultiviewsMatchis not allowed in a @@ -752,7 +752,7 @@ extensionsThe extension argument is case-insensitive and can be specified with or without a leading dot.
-@@ -814,10 +814,10 @@ extensions associations inherited from parent directories or the server config files. An example of its use might be: -Example
RemoveCharset .html .shtml+Example
RemoveCharset .html .shtml/foo/.htaccess:
AddHandler server-parsed .html+-/foo/.htaccess:
AddHandler server-parsed .html/foo/bar/.htaccess:
RemoveHandler .html+/foo/bar/.htaccess:
RemoveHandler .htmlThis has the effect of returning
.htmlfiles in @@ -900,7 +900,7 @@ extensionsThe extension argument is case-insensitive and can be specified with or without a leading dot.
-Example
RemoveOutputFilter shtml+Example
RemoveOutputFilter shtmlSee also
@@ -927,7 +927,7 @@ extensions directories or the server config files. An example of its use might be: -/foo/.htaccess:
RemoveType .cgi+/foo/.htaccess:
RemoveType .cgiThis will remove any special handling of
-.cgidiff --git a/docs/manual/mod/mod_mime_magic.html.en b/docs/manual/mod/mod_mime_magic.html.en index f27af8917e0..821e90d2b67 100644 --- a/docs/manual/mod/mod_mime_magic.html.en +++ b/docs/manual/mod/mod_mime_magic.html.en @@ -264,7 +264,7 @@ using the specified magic file used, in which case the more specific setting overrides the main server's file.diff --git a/docs/manual/mod/mod_negotiation.html.en b/docs/manual/mod/mod_negotiation.html.en index 2c529335631..6c106df599c 100644 --- a/docs/manual/mod/mod_negotiation.html.en +++ b/docs/manual/mod/mod_negotiation.html.en @@ -192,7 +192,7 @@ Negotiation and theExample
MimeMagicFile conf/magic+Example
MimeMagicFile conf/magic.varfile should be associated with thetype-maphandler with anAddHandlerdirective: -AddHandler type-map .var+AddHandler type-map .varA request for
-document.html.varin this directory will @@ -320,7 +320,7 @@ the client does not express a preference express a preference, when handling a Multiviews request. The list of MIME-lang are in order of decreasing preference.LanguagePriority en fr de+LanguagePriority en fr deFor a request for
-foo.html, where diff --git a/docs/manual/mod/mod_negotiation.html.fr b/docs/manual/mod/mod_negotiation.html.fr index 6af194ef647..957d8fa0767 100644 --- a/docs/manual/mod/mod_negotiation.html.fr +++ b/docs/manual/mod/mod_negotiation.html.fr @@ -197,7 +197,7 @@ contenu et le fichier.vardoit être associé au gestionnairetype-mapvia une directiveAddHandler:AddHandler type-map .var+AddHandler type-map .varA l'arrivée d'une requête pour la ressource @@ -335,7 +335,7 @@ cas o langages-MIME dans un ordre de préférences décroissantes.
-LanguagePriority en fr de+LanguagePriority en fr deDans le cas d'une requête pour
-foo.html, si diff --git a/docs/manual/mod/mod_proxy.html.en b/docs/manual/mod/mod_proxy.html.en index 70651a6d5db..84180b539ce 100644 --- a/docs/manual/mod/mod_proxy.html.en +++ b/docs/manual/mod/mod_proxy.html.en @@ -233,7 +233,7 @@ ProxyVia OnProxyPassMatchwhen used for a reverse proxy:ProxyPass /example http://backend.example.com connectiontimeout=5 timeout=30+ProxyPass /example http://backend.example.com connectiontimeout=5 timeout=30This will create a worker associated with the origin server URL @@ -241,7 +241,7 @@ ProxyVia On values. When used in a forward proxy, workers are usually defined via the
-ProxySetdirective:ProxySet http://backend.example.com connectiontimeout=5 timeout=30+ProxySet http://backend.example.com connectiontimeout=5 timeout=30or alternatively using
Proxy@@ -799,7 +799,7 @@ responseNote that the DNS lookups may slow down the startup time of the server.
-Example
ProxyBlock news.example.com auctions.example.com friends.example.com+Example
ProxyBlock news.example.com auctions.example.com friends.example.comNote that
examplewould also be sufficient to match any @@ -809,7 +809,7 @@ responseNote also that
-ProxyBlock *+ProxyBlock *blocks connections to all sites.
@@ -935,7 +935,7 @@ throughMax-Forwardsheader supplied with the request. This may be set to prevent infinite proxy loops, or a DoS attack. -Example
ProxyMaxForwards 15+Example
ProxyMaxForwards 15Note that setting
-ProxyMaxForwardsis a @@ -1004,7 +1004,7 @@ through the below syntax is that it allows for dynamic control via the Balancer Manager interface:ProxyPass /mirror/foo/ http://backend.example.com/+ProxyPass /mirror/foo/ http://backend.example.com/@@ -1074,7 +1074,7 @@ ProxyPass /mirror/foo http://backend.example.com among all child processes, except when only one child process is allowed by configuration or MPM design. -Example
ProxyPass /example http://backend.example.com max=20 ttl=120 retry=300+Example
ProxyPass /example http://backend.example.com max=20 ttl=120 retry=300@@ -1495,7 +1495,7 @@ ProxyPassReverse /mirror/foo/ https://backend.example.com/
BalancerMember parameters Suppose the local server has address
-http://example.com/; thenProxyPassMatch ^(/.*\.gif)$ http://backend.example.com$1+ProxyPassMatch ^(/.*\.gif)$ http://backend.example.com$1will cause a local request for @@ -1505,12 +1505,12 @@ ProxyPassReverse /mirror/foo/ https://backend.example.com/
The URL argument must be parsable as a URL before regexp substitutions (as well as after). This limits the matches you can use. For instance, if we had used
-ProxyPassMatch ^(/.*\.gif)$ http://backend.example.com:8000$1+ProxyPassMatch ^(/.*\.gif)$ http://backend.example.com:8000$1in our previous example, it would fail with a syntax error at server startup. This is a bug (PR 46665 in the ASF bugzilla), and the workaround is to reformulate the match:
-ProxyPassMatch ^/(.*\.gif)$ http://backend.example.com:8000/$1+ProxyPassMatch ^/(.*\.gif)$ http://backend.example.com:8000/$1The
-!directive is useful in situations where you don't want @@ -1644,7 +1644,7 @@ reverse proxy. This directive rewrites thepathstring in In the example given withProxyPassReverse, the directive:ProxyPassReverseCookiePath / /mirror/foo/+ProxyPassReverseCookiePath / /mirror/foo/will rewrite a cookie with backend path
-/(or @@ -1692,7 +1692,7 @@ connections to0to indicate that the system's default buffer size should be used.@@ -1817,10 +1817,10 @@ expressions </Proxy> -Example
ProxyReceiveBufferSize 2048+Example
ProxyReceiveBufferSize 2048ProxySet balancer://foo lbmethod=bytraffic timeout=15+ProxySet balancer://foo lbmethod=bytraffic timeout=15-ProxySet ajp://backend:7001 timeout=15+ProxySet ajp://backend:7001 timeout=15Warning
diff --git a/docs/manual/mod/mod_proxy.html.fr b/docs/manual/mod/mod_proxy.html.fr index 47366a331fd..aa60fe7b0a2 100644 --- a/docs/manual/mod/mod_proxy.html.fr +++ b/docs/manual/mod/mod_proxy.html.fr @@ -252,7 +252,7 @@ ProxyVia On Ils sont en général définis via les directivesProxyPassouProxyPassMatchlorsqu'on les utilise dans le cadre d'un mandataire inverse : -ProxyPass /example http://backend.example.com connectiontimeout=5 timeout=30+@@ -262,7 +262,7 @@ ProxyVia On d'un mandataire direct, les workers sont en général définis via la directiveProxyPass /example http://backend.example.com connectiontimeout=5 timeout=30ProxySet, -ProxySet http://backend.example.com connectiontimeout=5 timeout=30+@@ -897,7 +897,7 @@ incorrectes d'une rProxySet http://backend.example.com connectiontimeout=5 timeout=30Notez que les recherches DNS peuvent ralentir le processus de démarrage du serveur.
-Exemple
ProxyBlock news.example.com auctions.example.com friends.example.com+Exemple
ProxyBlock news.example.com auctions.example.com friends.example.comNotez qu'
examplesuffirait aussi pour atteindre @@ -907,7 +907,7 @@ incorrectes d'une rNotez aussi que
-ProxyBlock *+ProxyBlock *bloque les connexions vers tous les sites.
@@ -1047,7 +1047,7 @@ requ contre les boucles infinies de mandataires ou contre les attaques de type déni de service. -Exemple
ProxyMaxForwards 15+Exemple
ProxyMaxForwards 15Notez que la définition de la directive @@ -1123,7 +1123,7 @@ l'espace d'URLs du serveur local présente en très grand nombre. Elle possède l'avantage de permettre un contrôle dynamique via l'interface Balancer Manager :
-ProxyPass /miroir/foo/ http://backend.example.com/+ProxyPass /miroir/foo/ http://backend.example.com/@@ -1200,7 +1200,7 @@ ProxyPass /mirror/foo http://backend.example.com enfants, sauf si un seul processus enfant est autorisé par la configuration ou la conception du module multi-processus (MPM). -@@ -1866,7 +1866,7 @@ rExemple
ProxyPass /example http://backend.example.com max=20 ttl=120 retry=300+Exemple
ProxyPass /example http://backend.example.com max=20 ttl=120 retry=300@@ -1696,7 +1696,7 @@ du serveur local en utilisant des expressions rationnelles
Paramètres de BalancerMember Supposons que le serveur local a pour adresse
-http://example.com/; alorsProxyPassMatch ^(/.*\.gif)$ http://backend.example.com$1+ProxyPassMatch ^(/.*\.gif)$ http://backend.example.com$1va provoquer la conversion interne de la requête locale @@ -1708,13 +1708,13 @@ du serveur local en utilisant des expressions rationnelles avant les substitutions d'expressions rationnelles (et doit aussi l'être après). Ceci limite les correspondances que vous pouvez utiliser. Par exemple, si l'on avait utilisé
-ProxyPassMatch ^(/.*\.gif)$ http://backend.example.com:8000$1+ProxyPassMatch ^(/.*\.gif)$ http://backend.example.com:8000$1dans l'exemple précédent, nous aurions provoqué une erreur de syntaxe au démarrage du serveur. C'est une bogue (PR 46665 dans ASF bugzilla), et il est possible de la contourner en reformulant la correspondance :
-ProxyPassMatch ^/(.*\.gif)$ http://backend.example.com:8000/$1+ProxyPassMatch ^/(.*\.gif)$ http://backend.example.com:8000/$1Dans l'exemple fourni avec la directive
-ProxyPassReverse, la directive :ProxyPassReverseCookiePath / /mirror/foo/+ProxyPassReverseCookiePath / /mirror/foo/va réécrire un cookie possédant un chemin d'arrière-plan
-/@@ -1917,7 +1917,7 @@ et FTP0pour indiquer que la taille de tampon par défaut du système doit être utilisée.@@ -2056,10 +2056,10 @@ charge </Proxy> -Exemple
ProxyReceiveBufferSize 2048+Exemple
ProxyReceiveBufferSize 2048ProxySet balancer://foo lbmethod=bytraffic timeout=15+ProxySet balancer://foo lbmethod=bytraffic timeout=15-ProxySet ajp://backend:7001 timeout=15+ProxySet ajp://backend:7001 timeout=15Avertissement
diff --git a/docs/manual/mod/mod_proxy_ajp.html.en b/docs/manual/mod/mod_proxy_ajp.html.en index b4697f5c304..38a1f97763e 100644 --- a/docs/manual/mod/mod_proxy_ajp.html.en +++ b/docs/manual/mod/mod_proxy_ajp.html.en @@ -71,7 +71,7 @@ (e.g. Apache Tomcat) using the AJP13 protocol. The usage is similar to an HTTP reverse proxy, but uses theajp://prefix: -Simple Reverse Proxy
ProxyPass /app ajp://backend.example.com:8009/app+Simple Reverse Proxy
ProxyPass /app ajp://backend.example.com:8009/appBalancers may also be used:
diff --git a/docs/manual/mod/mod_proxy_fcgi.html.en b/docs/manual/mod/mod_proxy_fcgi.html.en index 56d9ab352b6..7c556c1eebb 100644 --- a/docs/manual/mod/mod_proxy_fcgi.html.en +++ b/docs/manual/mod/mod_proxy_fcgi.html.en @@ -73,7 +73,7 @@Remember, in order to make the following examples work, you have to enable
-mod_proxyandmod_proxy_fcgi.Single application instance
ProxyPass /myapp/ fcgi://localhost:4000/+Single application instance
ProxyPass /myapp/ fcgi://localhost:4000/This application should be able to handle multiple concurrent @@ -87,7 +87,7 @@ reuse on the
-ProxyPassdirective, as shown in the following example:Single application instance, no connection reuse
ProxyPass /myapp/ fcgi://localhost:4000/ disablereuse=on+Single application instance, no connection reuse
ProxyPass /myapp/ fcgi://localhost:4000/ disablereuse=onThe balanced gateway needs
mod_proxy_balancerand diff --git a/docs/manual/mod/mod_proxy_scgi.html.en b/docs/manual/mod/mod_proxy_scgi.html.en index 3dca9631bcc..fb4266e0a44 100644 --- a/docs/manual/mod/mod_proxy_scgi.html.en +++ b/docs/manual/mod/mod_proxy_scgi.html.en @@ -66,7 +66,7 @@Remember, in order to make the following examples work, you have to enable
-mod_proxyandmod_proxy_scgi.Simple gateway
ProxyPass /scgi-bin/ scgi://localhost:4000/+Simple gateway
ProxyPass /scgi-bin/ scgi://localhost:4000/The balanced gateway needs
-mod_proxy_balancerand @@ -121,7 +121,7 @@ backendmod_cgiin this regard, except that you can turn off the feature.diff --git a/docs/manual/mod/mod_remoteip.html.en b/docs/manual/mod/mod_remoteip.html.en index 659daa314f7..e917921824b 100644 --- a/docs/manual/mod/mod_remoteip.html.en +++ b/docs/manual/mod/mod_remoteip.html.en @@ -136,10 +136,10 @@ via the request headers. other directives are used,Example
ProxySCGIInternalRedirect Off+Example
ProxySCGIInternalRedirect Offmod_remoteipwill trust all hosts presenting aRemoteIPHeaderIP value. --Internal (Load Balancer) Example
RemoteIPHeader X-Client-IP+-Internal (Load Balancer) Example
RemoteIPHeader X-Client-IPdiff --git a/docs/manual/mod/mod_remoteip.html.fr b/docs/manual/mod/mod_remoteip.html.fr index e00e09d712b..479488b57f7 100644 --- a/docs/manual/mod/mod_remoteip.html.fr +++ b/docs/manual/mod/mod_remoteip.html.fr @@ -151,10 +151,10 @@ du clientProxy Example
RemoteIPHeader X-Forwarded-For+Proxy Example
RemoteIPHeader X-Forwarded-ForRemoteIPHeadercomme hôte de confiance.-Exemple à usage interne (répartiteur de - charge)
RemoteIPHeader X-Client-IP+ charge)RemoteIPHeader X-Client-IPdiff --git a/docs/manual/mod/mod_reqtimeout.html.en b/docs/manual/mod/mod_reqtimeout.html.en index 53437a6a0de..d47fbedba8d 100644 --- a/docs/manual/mod/mod_reqtimeout.html.en +++ b/docs/manual/mod/mod_reqtimeout.html.en @@ -49,7 +49,7 @@ Allow 10 seconds to receive the request including the headers and 30 seconds for receiving the request body: -Exemple dans le cas d'un mandataire
RemoteIPHeader X-Forwarded-For+Exemple dans le cas d'un mandataire
RemoteIPHeader X-Forwarded-ForRequestReadTimeout header=10 body=30+RequestReadTimeout header=10 body=30@@ -60,7 +60,7 @@ the limit given indirectly byLimitRequestBody): -RequestReadTimeout body=10,MinRate=1000+RequestReadTimeout body=10,MinRate=1000@@ -70,7 +70,7 @@ 500 bytes received. But do not allow more than 30 seconds for the request including the headers: -RequestReadTimeout header=10-30,MinRate=500+RequestReadTimeout header=10-30,MinRate=500@@ -79,7 +79,7 @@ If a common configuration is used for http and https virtual hosts, the timeouts should not be set too low: -RequestReadTimeout header=20-40,MinRate=500 body=20,MinRate=500+RequestReadTimeout header=20-40,MinRate=500 body=20,MinRate=500diff --git a/docs/manual/mod/mod_rewrite.html.en b/docs/manual/mod/mod_rewrite.html.en index 644798809e7..de1342b26b4 100644 --- a/docs/manual/mod/mod_rewrite.html.en +++ b/docs/manual/mod/mod_rewrite.html.en @@ -84,7 +84,7 @@ URLs on the fly level higher thantrace2only for debugging!Example
LogLevel alert rewrite:trace3+Example
LogLevel alert rewrite:trace3-RewriteLog
@@ -638,7 +638,7 @@ Alias /myapp /opt/myapp-1.2.3 to block unwanted hotlinking. -RewriteCond expr "! %{HTTP_REFERER} -strmatch '*://%{HTTP_HOST}/*'"
+RewriteCond expr "! %{HTTP_REFERER} -strmatch '*://%{HTTP_HOST}/*'"@@ -782,13 +782,13 @@ RewriteRule ^/$ /homepage.std.html [L]
RewriteRule ^/images - [F]For example, you might define a
-RewriteMapas:RewriteMap examplemap txt:/path/to/file/map.txt+RewriteMap examplemap txt:/path/to/file/map.txtYou would then be able to use this map in a
-RewriteRuleas follows:RewriteRule ^/ex/(.*) ${examplemap:$1}+RewriteRule ^/ex/(.*) ${examplemap:$1}The following combinations for MapType and diff --git a/docs/manual/mod/mod_rewrite.html.fr b/docs/manual/mod/mod_rewrite.html.fr index cf333acba22..70bcd877e07 100644 --- a/docs/manual/mod/mod_rewrite.html.fr +++ b/docs/manual/mod/mod_rewrite.html.fr @@ -93,7 +93,7 @@ r supérieur à
trace2qu'à des fins de débogage !Exemple
LogLevel alert rewrite:trace3+Exemple
LogLevel alert rewrite:trace3RewriteLog
@@ -682,7 +682,7 @@ la r non désiré. -RewriteCond expr "! %{HTTP_REFERER} -strmatch '*://%{HTTP_HOST}/*'"
+RewriteCond expr "! %{HTTP_REFERER} -strmatch '*://%{HTTP_HOST}/*'"@@ -845,13 +845,13 @@ correspondance:source de la correspondance
RewriteRule ^/images - [F]Par exemple, vous pouvez définir une directive
-RewriteMapcomme suitRewriteMap map-exemple txt:/chemin/vers/fichier/map.txt+RewriteMap map-exemple txt:/chemin/vers/fichier/map.txtVous pourrez ensuite utiliser cette table dans une directive
-RewriteRulecomme suit :RewriteRule ^/ex/(.*) ${map-exemple:$1}+RewriteRule ^/ex/(.*) ${map-exemple:$1}Les combinaisons suivantes pour type de correspondance diff --git a/docs/manual/mod/mod_session_crypto.html.en b/docs/manual/mod/mod_session_crypto.html.en index fa8506af56c..59d99b89bcf 100644 --- a/docs/manual/mod/mod_session_crypto.html.en +++ b/docs/manual/mod/mod_session_crypto.html.en @@ -131,16 +131,16 @@ SessionCryptoPassphrase secret
The NSS crypto driver requires some parameters for configuration, which are specified as parameters with optional values after the driver name.
-NSS without a certificate database
SessionCryptoDriver nss+-NSS without a certificate database
SessionCryptoDriver nssNSS with certificate database
SessionCryptoDriver nss dir=certs+-NSS with certificate database
SessionCryptoDriver nss dir=certsNSS with certificate database and parameters
SessionCryptoDriver nss dir=certs key3=key3.db cert7=cert7.db secmod=secmod+-NSS with certificate database and parameters
SessionCryptoDriver nss dir=certs key3=key3.db cert7=cert7.db secmod=secmod@@ -202,7 +202,7 @@ CustomLog logs/clickstream.log usertrackNSS with paths containing spaces
SessionCryptoDriver nss "dir=My Certs" key3=key3.db cert7=cert7.db secmod=secmod+NSS with paths containing spaces
SessionCryptoDriver nss "dir=My Certs" key3=key3.db cert7=cert7.db secmod=secmodThe NSS crypto driver might have already been @@ -150,7 +150,7 @@ SessionCryptoPassphrase secret existing configuration will have taken affect. To avoid this warning, use the noinit parameter as follows.
-@@ -179,7 +179,7 @@ CustomLog logs/clickstream.log usertrack three of these formats, withNSS with certificate database
SessionCryptoDriver nss noinit+NSS with certificate database
SessionCryptoDriver nss noinitTo prevent confusion, ensure that all modules requiring NSS are configured with @@ -159,7 +159,7 @@ SessionCryptoPassphrase secret
The openssl crypto driver supports an optional parameter to specify the engine to be used for encryption.
-@@ -142,7 +142,7 @@ CustomLog logs/clickstream.log usertrack unpredictable if you use a name containing unusual characters. Valid characters include A-Z, a-z, 0-9, "_", and "-". -OpenSSL with engine support
SessionCryptoDriver openssl engine=name+diff --git a/docs/manual/mod/mod_setenvif.html.en b/docs/manual/mod/mod_setenvif.html.en index f3e6ce177e8..322b8f3b884 100644 --- a/docs/manual/mod/mod_setenvif.html.en +++ b/docs/manual/mod/mod_setenvif.html.en @@ -273,7 +273,7 @@ for additional examples.OpenSSL with engine support
SessionCryptoDriver openssl engine=nameap_expr. These expressions will be evaluated at runtime, and applied env-variable in the same fashion asSetEnvIf. -SetEnvIfExpr "tolower(req('X-Sendfile')) == 'd:\images\very_big.iso')" iso_delivered+SetEnvIfExpr "tolower(req('X-Sendfile')) == 'd:\images\very_big.iso')" iso_deliveredThis would set the environment variable
iso_delivered@@ -282,7 +282,7 @@ for additional examples.A more useful example would be to set the variable rfc1918 if the remote IP address is a private address according to RFC 1918:
-SetEnvIfExpr "-R '10.0.0.0/8' || -R '172.16.0.0/12' || -R '192.168.0.0/16'" rfc1918+SetEnvIfExpr "-R '10.0.0.0/8' || -R '172.16.0.0/12' || -R '192.168.0.0/16'" rfc1918See also
@@ -312,7 +312,7 @@ without respect to case theSetEnvIfdirective, and differs only in that the regular expression matching is performed in a case-insensitive manner. For example: -SetEnvIfNoCase Host Example\.Org site=example+SetEnvIfNoCase Host Example\.Org site=exampleThis will cause the
-siteenvironment variable diff --git a/docs/manual/mod/mod_setenvif.html.fr b/docs/manual/mod/mod_setenvif.html.fr index ac7bdb8909c..70288ed194a 100644 --- a/docs/manual/mod/mod_setenvif.html.fr +++ b/docs/manual/mod/mod_setenvif.html.fr @@ -284,7 +284,7 @@ serveur HTTP Apache pour des exemples suppl d'environnement env-variable de la même manière que la directiveSetEnvIf.SetEnvIfExpr "tolower(req('X-Sendfile')) == 'd:\images\very_big.iso')" iso_delivered+SetEnvIfExpr "tolower(req('X-Sendfile')) == 'd:\images\very_big.iso')" iso_deliveredDans cet exemple, la variable d'environnement @@ -295,7 +295,7 @@ serveur HTTP Apache pour des exemples suppl l'adresse IP distante est une adresse privée au sens de la RFC 1918 :
-SetEnvIfExpr "-R '10.0.0.0/8' || -R '172.16.0.0/12' || -R '192.168.0.0/16'" rfc1918+SetEnvIfExpr "-R '10.0.0.0/8' || -R '172.16.0.0/12' || -R '192.168.0.0/16'" rfc1918Voir aussi
@@ -325,7 +325,7 @@ attributs de la requ d'un point de vue sémantique à la directiveSetEnvIf, et ne s'en distingue que par le fait que la comparaison des expressions rationnelles est effectuée sans tenir compte de la casse. Par exemple : -SetEnvIfNoCase Host Example\.Org site=apache+SetEnvIfNoCase Host Example\.Org site=apacheCette ligne va définir la variable d'environnement diff --git a/docs/manual/mod/mod_so.html.en b/docs/manual/mod/mod_so.html.en index 3e42d2157b1..c0f76f6f20c 100644 --- a/docs/manual/mod/mod_so.html.en +++ b/docs/manual/mod/mod_so.html.en @@ -181,7 +181,7 @@ of active modules
-modulein the file, and is listed as the Module Identifier in the module documentation. Example:LoadModule status_module modules/mod_status.so+LoadModule status_module modules/mod_status.soloads the named module from the modules subdirectory of the diff --git a/docs/manual/mod/mod_so.html.fr b/docs/manual/mod/mod_so.html.fr index 0cf37b02b3e..e05dcc6d619 100644 --- a/docs/manual/mod/mod_so.html.fr +++ b/docs/manual/mod/mod_so.html.fr @@ -196,7 +196,7 @@ actifs
-moduledans le fichier, et est référencé comme Identificateur de module dans la documentation des modules. Exemple :LoadModule status_module modules/mod_status.so+LoadModule status_module modules/mod_status.socharge le module spécifié depuis le sous-répertoire des modules diff --git a/docs/manual/mod/mod_ssl.html.en b/docs/manual/mod/mod_ssl.html.en index cad25af326d..e040983b1ab 100644 --- a/docs/manual/mod/mod_ssl.html.en +++ b/docs/manual/mod/mod_ssl.html.en @@ -291,7 +291,7 @@ string in
-mod_log_conf encrypted with SSL. This is similar to theSSLRequireSSLdirective.Require ssl+Require ssl@@ -305,7 +305,7 @@ string inmod_log_confThe following example grants access if the user is authenticated either with a client certificate or by username and password.
-Require ssl-verify-client
+Require ssl-verify-clientdiff --git a/docs/manual/mod/mod_suexec.html.en b/docs/manual/mod/mod_suexec.html.en index 1258322a546..656681c21e2 100644 --- a/docs/manual/mod/mod_suexec.html.en +++ b/docs/manual/mod/mod_suexec.html.en @@ -61,7 +61,7 @@ and Group to specify a user and group for CGI programs to run as. Non-CGI requests are still processed with the user specified in the
Require valid-userUserdirective. -@@ -119,7 +119,7 @@ CustomLog logs/clickstream.log usertrackExample
SuexecUserGroup nobody nogroup+Example
SuexecUserGroup nobody nogroupIn Apache httpd 2.3.9 and later, startup will fail if this diff --git a/docs/manual/mod/mod_unixd.html.en b/docs/manual/mod/mod_unixd.html.en index 4d9b0cfb243..6c600498cd4 100644 --- a/docs/manual/mod/mod_unixd.html.en +++ b/docs/manual/mod/mod_unixd.html.en @@ -90,7 +90,7 @@ requests
- Refers to a group by its number.
--Example
Group www-group+Example
Group www-groupIt is recommended that you set up a new group specifically for diff --git a/docs/manual/mod/mod_userdir.html.en b/docs/manual/mod/mod_userdir.html.en index f9766b8ecbd..8becc60c12e 100644 --- a/docs/manual/mod/mod_userdir.html.en +++ b/docs/manual/mod/mod_userdir.html.en @@ -141,13 +141,13 @@ UserDir enabled user1 user2 user3
To allow most users to have
-UserDirdirectories, but deny this to a few, use the following:UserDir disabled user4 user5 user6+UserDir disabled user4 user5 user6It is also possible to specify alternative user directories. If you use a command like:
-UserDir public_html /usr/web http://www.example.com/+UserDir public_html /usr/web http://www.example.com/With a request for diff --git a/docs/manual/mod/mod_usertrack.html.en b/docs/manual/mod/mod_usertrack.html.en index c0bce00749c..54436800af1 100644 --- a/docs/manual/mod/mod_usertrack.html.en +++ b/docs/manual/mod/mod_usertrack.html.en @@ -94,7 +94,7 @@ CustomLog logs/clickstream.log usertrack level domain (for example
.example.co.uk).CookieDomain .example.com+CookieDomain .example.comIf this directive is not used, cookies last only for the current browser session.
-CookieExpires "3 weeks"+CookieExpires "3 weeks"CookieName clicktrack+CookieName clicktrackCookie2being the preferred format. -CookieStyle Cookie2+CookieStyle Cookie2mod_usertrackwill not activate cookies. -CookieTracking on+CookieTracking ondiff --git a/docs/manual/mod/mod_vhost_alias.html.en b/docs/manual/mod/mod_vhost_alias.html.en index 996083a906a..2b5bebf0ed7 100644 --- a/docs/manual/mod/mod_vhost_alias.html.en +++ b/docs/manual/mod/mod_vhost_alias.html.en @@ -169,7 +169,7 @@ VirtualDocumentRoot /usr/local/apache/vhosts/%3+/%2.1/%2.2/%2.3/%2A more even spread of files can be achieved by hashing from the end of the name, for example:
-VirtualDocumentRoot /usr/local/apache/vhosts/%3+/%2.-1/%2.-2/%2.-3/%2+VirtualDocumentRoot /usr/local/apache/vhosts/%3+/%2.-1/%2.-2/%2.-3/%2The example request would come from @@ -177,7 +177,7 @@ VirtualDocumentRoot /usr/local/apache/vhosts/%3+/%2.1/%2.2/%2.3/%2
Alternatively you might use:
-VirtualDocumentRoot /usr/local/apache/vhosts/%3+/%2.1/%2.2/%2.3/%2.4++VirtualDocumentRoot /usr/local/apache/vhosts/%3+/%2.1/%2.2/%2.3/%2.4+The example request would come from @@ -194,7 +194,7 @@ tld, for example
-example.comregardless of the number of subdomains to the hostname. As such, one can make a configuration that will direct all first, second or third level subdomains to the same directory:VirtualDocumentRoot "/usr/local/apache/vhosts/%-2.0.%-1.0"+VirtualDocumentRoot "/usr/local/apache/vhosts/%-2.0.%-1.0"In the example above, both
-www.example.comas well aswww.sub.example.com@@ -224,7 +224,7 @@ VirtualScriptAliasIP /usr/local/apache/vhosts/%1/%2/%3/%4/cgi-bin a%directive, you can work around the problem in the following way:VirtualDocumentRoot /usr/local/apache/vhosts/%2.0.%3.0+VirtualDocumentRoot /usr/local/apache/vhosts/%2.0.%3.0A request for diff --git a/docs/manual/mod/mpm_common.html.en b/docs/manual/mod/mpm_common.html.en index 086b625c112..d9fe6996837 100644 --- a/docs/manual/mod/mpm_common.html.en +++ b/docs/manual/mod/mpm_common.html.en @@ -192,7 +192,7 @@ Listen 192.170.2.5:8000
IPv6 addresses must be surrounded in square brackets, as in the following example:
-Listen [2001:db8::a00:20ff:fea7:ccea]:80+Listen [2001:db8::a00:20ff:fea7:ccea]:80The optional protocol argument is not required for most @@ -205,7 +205,7 @@ Listen 192.170.2.5:8000
You only need to set the protocol if you are running on non-standard ports. For example, running an
-httpssite on port 8443:Listen 192.170.2.1:8443 https+Listen 192.170.2.1:8443 httpsError condition
@@ -428,7 +428,7 @@ of the daemon filename is not absolute then it is assumed to be relative to theDefaultRuntimeDir. -Example
PidFile /var/run/apache.pid+Example
PidFile /var/run/apache.pidIt is often useful to be able to send the server a signal, @@ -486,7 +486,7 @@ the child processes will be relative to the value of
-DefaultRuntimeDir.Example
ScoreBoardFile /var/run/apache_runtime_status+Example
ScoreBoardFile /var/run/apache_runtime_statusFile-based shared memory is useful for third-party applications diff --git a/docs/manual/platform/windows.html.en b/docs/manual/platform/windows.html.en index 33dbb6cf2f6..7c2f867ba45 100644 --- a/docs/manual/platform/windows.html.en +++ b/docs/manual/platform/windows.html.en @@ -165,7 +165,7 @@ RewriteRule (.*) ${lowercase:$1} [R,L] module, use the following (in addition to the status-activating directives in
-access.conf):LoadModule status_module modules/mod_status.so+LoadModule status_module modules/mod_status.so-Example DocumentRoot with UNC path
DocumentRoot //dochost/www/html/+-Example DocumentRoot with UNC path
DocumentRoot //dochost/www/html/Example DocumentRoot with IP address in UNC path
DocumentRoot //192.168.1.50/docs/+Example DocumentRoot with IP address in UNC path
DocumentRoot //192.168.1.50/docs/Example Alias and corresponding Directory with UNC path
Alias /images/ //imagehost/www/images/ diff --git a/docs/manual/rewrite/remapping.html.en b/docs/manual/rewrite/remapping.html.en index de84ba80ee7..56356043c32 100644 --- a/docs/manual/rewrite/remapping.html.en +++ b/docs/manual/rewrite/remapping.html.en @@ -509,7 +509,7 @@ RewriteRule ^foo\.html$ foo.32.html [L This should really be accomplished with Redirect or RedirectMatch directives: -RedirectMatch ^/(puppies|canines)/(.*) /dogs/$2+RedirectMatch ^/(puppies|canines)/(.*) /dogs/$2diff --git a/docs/manual/ssl/ssl_faq.html.en b/docs/manual/ssl/ssl_faq.html.en index 1c4b415d592..ddebddd338d 100644 --- a/docs/manual/ssl/ssl_faq.html.en +++ b/docs/manual/ssl/ssl_faq.html.en @@ -650,7 +650,7 @@ Virtual Hosting to identify different SSL virtual hosts? you must make sure to put the non-SSL port number on the NameVirtualHost directive, e.g. -NameVirtualHost 192.168.1.1:80+NameVirtualHost 192.168.1.1:80Other workaround solutions include:
diff --git a/docs/manual/ssl/ssl_faq.html.fr b/docs/manual/ssl/ssl_faq.html.fr index c0d815b2293..ff447118464 100644 --- a/docs/manual/ssl/ssl_faq.html.fr +++ b/docs/manual/ssl/ssl_faq.html.fr @@ -707,7 +707,7 @@ pour diff (sur le port 443). Mais dans ce cas, vous devez définir le numéro de port non-SSL à l'aide de la directive NameVirtualHost dans ce style : -NameVirtualHost 192.168.1.1:80+NameVirtualHost 192.168.1.1:80il existe d'autres solutions alternatives comme :
diff --git a/docs/manual/ssl/ssl_howto.html.en b/docs/manual/ssl/ssl_howto.html.en index cb4f996cc2f..0993bfe49ab 100644 --- a/docs/manual/ssl/ssl_howto.html.en +++ b/docs/manual/ssl/ssl_howto.html.en @@ -67,7 +67,7 @@ requires a strong cipher for access to a particular URL? only?The following enables only the strongest ciphers:
-SSLCipherSuite HIGH:!aNULL:!MD5+SSLCipherSuite HIGH:!aNULL:!MD5While with the following configuration you specify a preference diff --git a/docs/manual/ssl/ssl_howto.html.fr b/docs/manual/ssl/ssl_howto.html.fr index 199d8469b72..b5aa9d02947 100644 --- a/docs/manual/ssl/ssl_howto.html.fr +++ b/docs/manual/ssl/ssl_howto.html.fr @@ -77,7 +77,7 @@ que le chiffrement fort ?
Les directives suivantes ne permettent que les chiffrements de plus haut niveau :
-SSLCipherSuite HIGH:!aNULL:!MD5+SSLCipherSuite HIGH:!aNULL:!MD5diff --git a/docs/manual/upgrading.html.en b/docs/manual/upgrading.html.en index 1a8acba2630..3642e2a5c29 100644 --- a/docs/manual/upgrading.html.en +++ b/docs/manual/upgrading.html.en @@ -143,14 +143,14 @@-2.2 configuration:
Order deny,allow Deny from all2.4 configuration:
Require all denied+2.4 configuration:
Require all deniedIn this example, all requests are allowed.
-2.2 configuration:
Order allow,deny Allow from all-2.4 configuration:
Require all granted+2.4 configuration:
Require all grantedIn the following example, all hosts in the example.org domain @@ -160,7 +160,7 @@ Allow from all Deny from all Allow from example.org
2.4 configuration:
Require host example.org+diff --git a/docs/manual/upgrading.html.fr b/docs/manual/upgrading.html.fr index 85ee7de601d..258e71a5899 100644 --- a/docs/manual/upgrading.html.fr +++ b/docs/manual/upgrading.html.fr @@ -152,14 +152,14 @@ n2.4 configuration:
Require host example.org-version 2.2 :
Order deny,allow Deny from allversion 2.4 :
Require all denied+version 2.4 :
Require all deniedDans cet exemple, toutes les requêtes sont acceptées :
-version 2.2 :
Order allow,deny Allow from all-version 2.4 :
Require all granted+version 2.4 :
Require all grantedDans l'exemple suivant, tous les hôtes du domaine example.org @@ -169,7 +169,7 @@ Allow from all Deny from all Allow from example.org
version 2.4 :
Require host example.org+diff --git a/docs/manual/urlmapping.html.en b/docs/manual/urlmapping.html.en index bc46837704d..4fdc6064a99 100644 --- a/docs/manual/urlmapping.html.en +++ b/docs/manual/urlmapping.html.en @@ -129,7 +129,7 @@ expression based matching and substitution. For example, -version 2.4 :
Require host example.orgScriptAliasMatch ^/~([a-zA-Z0-9]+)/cgi-bin/(.+) /home/$1/cgi-bin/$2+ScriptAliasMatch ^/~([a-zA-Z0-9]+)/cgi-bin/(.+) /home/$1/cgi-bin/$2will map a request to @@ -176,7 +176,7 @@
-/home/user/public_html/file.html, use the followingAliasMatchdirective:AliasMatch ^/upages/([a-zA-Z0-9]+)(/(.*))?$ /home/$1/public_html/$3+AliasMatch ^/upages/([a-zA-Z0-9]+)(/(.*))?$ /home/$1/public_html/$3@@ -194,7 +194,7 @@ to the new directory/bar/, you can instruct clients to request the content at the new location as follows: -Redirect permanent /foo/ http://www.example.com/bar/+Redirect permanent /foo/ http://www.example.com/bar/This will redirect any URL-Path starting in @@ -208,13 +208,13 @@ for the site home page to a different site, but leave all other requests alone, use the following configuration:
-RedirectMatch permanent ^/$ http://www.example.com/startpage.html+RedirectMatch permanent ^/$ http://www.example.com/startpage.htmlAlternatively, to temporarily redirect all pages on one site to a particular page on another site, use the following:
-RedirectMatch temp .* http://othersite.example.com/startpage.html+RedirectMatch temp .* http://othersite.example.com/startpage.htmldiff --git a/docs/manual/urlmapping.html.fr b/docs/manual/urlmapping.html.fr index 230729158f7..3cdf217809d 100644 --- a/docs/manual/urlmapping.html.fr +++ b/docs/manual/urlmapping.html.fr @@ -141,7 +141,7 @@ l'arborescence DocumentRoot sur les expressions rationnelles. Par exemple, -ScriptAliasMatch ^/~([a-zA-Z0-9]+)/cgi-bin/(.+) /home/$1/cgi-bin/$2+ScriptAliasMatch ^/~([a-zA-Z0-9]+)/cgi-bin/(.+) /home/$1/cgi-bin/$2fera correspondre une requête du style @@ -190,7 +190,7 @@ l'arborescence DocumentRoot
-/home/user/public_html/file.html, utilisez la directiveAliasMatchsuivante :AliasMatch ^/upages/([a-zA-Z0-9]+)(/(.*))?$ /home/$1/public_html/$3+AliasMatch ^/upages/([a-zA-Z0-9]+)(/(.*))?$ /home/$1/public_html/$3@@ -210,7 +210,7 @@ l'arborescence DocumentRoot nouveau répertoire/bar/, vous pouvez demander aux clients de le requérir à sa nouvelle localisation comme suit : -Redirect permanent /foo/ http://www.example.com/bar/+Redirect permanent /foo/ http://www.example.com/bar/Ceci aura pour effet de rediriger tout chemin d'URL commençant par @@ -225,13 +225,13 @@ l'arborescence DocumentRoot laisser toutes les autres requêtes inchangées, utilisez la configuration suivante :
-RedirectMatch permanent ^/$ http://www.example.com/startpage.html+RedirectMatch permanent ^/$ http://www.example.com/startpage.htmlDe même, pour rediriger temporairement toutes les pages d'un site vers une page particulière d'un autre site, utilisez ce qui suit :
-RedirectMatch temp .* http://othersite.example.com/startpage.html+RedirectMatch temp .* http://othersite.example.com/startpage.htmldiff --git a/docs/manual/vhosts/ip-based.html.en b/docs/manual/vhosts/ip-based.html.en index 2029db37522..52f5008a321 100644 --- a/docs/manual/vhosts/ip-based.html.en +++ b/docs/manual/vhosts/ip-based.html.en @@ -113,7 +113,7 @@ Virtual Hosts to help you decide. configuration file to select which IP address (or virtual host) that daemon services. e.g. -Listen 192.0.2.100:80+Listen 192.0.2.100:80It is recommended that you use an IP address instead of a diff --git a/docs/manual/vhosts/ip-based.html.fr b/docs/manual/vhosts/ip-based.html.fr index 27fe005a1c4..15a7dddb382 100644 --- a/docs/manual/vhosts/ip-based.html.fr +++ b/docs/manual/vhosts/ip-based.html.fr @@ -110,7 +110,7 @@ r de configuration pour définir l'adresse IP (ou serveur virtuel) que le processus résident doit gérer. Par exemple :
-Listen 192.0.2.100:80+Listen 192.0.2.100:80Il est recommandé d'utiliser une adresse IP plutôt qu'un nom diff --git a/docs/manual/vhosts/name-based.html.en b/docs/manual/vhosts/name-based.html.en index 58ee8098f73..fd74e98ac86 100644 --- a/docs/manual/vhosts/name-based.html.en +++ b/docs/manual/vhosts/name-based.html.en @@ -153,7 +153,7 @@ the listed names are other names which people can use to see that same web site:
-ServerAlias example.com *.example.com+ServerAlias example.com *.example.comthen requests for all hosts in the
-example.comdomain will diff --git a/docs/manual/vhosts/name-based.html.fr b/docs/manual/vhosts/name-based.html.fr index 705b463253e..73db3e3a3c9 100644 --- a/docs/manual/vhosts/name-based.html.fr +++ b/docs/manual/vhosts/name-based.html.fr @@ -187,7 +187,7 @@ virtuel bas indique aux utilisateurs les autres noms permis pour accéder au même site Web :ServerAlias example.com *.example.com+ServerAlias example.com *.example.comainsi, toutes les requêtes portant sur un domaine