From: André Malo Date: Wed, 5 Feb 2014 23:56:57 +0000 (+0000) Subject: update transformation X-Git-Tag: 2.5.0-alpha~4513 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f2bc49c096554eae78eb8941c51e3fa00efb0a9e;p=apache update transformation git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1565004 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/bind.html.en b/docs/manual/bind.html.en index 2ae03d172b..325c052d7a 100644 --- a/docs/manual/bind.html.en +++ b/docs/manual/bind.html.en @@ -82,7 +82,7 @@ Listen 192.0.2.5:8000

IPv6 addresses must be enclosed in square brackets, as in the following example:

-
      Listen [2001:db8::a00:20ff:fea7:ccea]:80
+
Listen [2001:db8::a00:20ff:fea7:ccea]:80

Overlapping Listen directives will result in a @@ -156,7 +156,7 @@ Listen 192.0.2.1:80

You only need to set the protocol if you are running on non-standard ports. For example, running an https site on port 8443:

-
      Listen 192.170.2.1:8443 https
+
Listen 192.170.2.1:8443 https
top
diff --git a/docs/manual/bind.html.fr b/docs/manual/bind.html.fr index 211e7968fd..ce34ff5e97 100644 --- a/docs/manual/bind.html.fr +++ b/docs/manual/bind.html.fr @@ -87,7 +87,7 @@ Listen 192.0.2.5:8000

Les adresses IPv6 doivent être mises entre crochets, comme dans l'exemple suivant :

-
      Listen [2001:db8::a00:20ff:fea7:ccea]:80
+
Listen [2001:db8::a00:20ff:fea7:ccea]:80

Des directives 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
top
diff --git a/docs/manual/caching.html.en b/docs/manual/caching.html.en index 145b96d60e..8deecc4776 100644 --- a/docs/manual/caching.html.en +++ b/docs/manual/caching.html.en @@ -616,7 +616,7 @@ CacheDirLength 1 instructs httpd to open the file when it is started and to re-use this file-handle for all subsequent access to this file.

-
        CacheFile /usr/local/apache2/htdocs/index.html
+
CacheFile /usr/local/apache2/htdocs/index.html

If you intend to cache a large number of files in this manner, you @@ -705,7 +705,7 @@ sys 0m0.000s

start time (using the mmap system call). httpd will use the in-memory contents for all subsequent accesses to this file.

-
        MMapFile /usr/local/apache2/htdocs/index.html
+
MMapFile /usr/local/apache2/htdocs/index.html

As with the diff --git a/docs/manual/caching.html.fr b/docs/manual/caching.html.fr index 6dd043ee9d..92b501a334 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.

-
        CacheFile /usr/local/apache2/htdocs/index.html
+
CacheFile /usr/local/apache2/htdocs/index.html

Si vous désirez mettre en cache un grand nombre de fichiers @@ -778,7 +778,7 @@ sys 0m0.000s

utilisera le contenu chargé en mémoire pour satisfaire ultérieurement toutes les demandes d'accès à ce fichier.

-
        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 c4efb99c28..e246f52784 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 messages
#Include conf/extra/httpd-multilang-errordoc.conf
diff --git a/docs/manual/custom-error.html.fr b/docs/manual/custom-error.html.fr index 18b815fcfb..b30de49e1d 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

La syntaxe de la directive ErrorDocument est :

-
      ErrorDocument <code_3_chiffres> <action>
+
ErrorDocument <code_3_chiffres> <action>

où action peut être traitée comme :

    @@ -192,7 +192,7 @@ printf "Status: %s Condition Intercepted\n", $ENV{"REDIRECT_STATUS"};

    Dans le fichier de configuration de votre serveur, vous trouverez un groupe de lignes du style :

    -
        # Multi-language error messages
    +
    # Multi-language error messages
    #Include conf/extra/httpd-multilang-errordoc.conf
    diff --git a/docs/manual/developer/hooks.html.en b/docs/manual/developer/hooks.html.en index 6e78a73194..fb7a924c74 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 int and takes a request_rec * and an int and is called do_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, OK and DECLINED are the traditional diff --git a/docs/manual/developer/output-filters.html.en b/docs/manual/developer/output-filters.html.en index d85420c20d..8904d81fd5 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)
    +

    How to handle an empty brigade

    apr_status_t dummy_filter(ap_filter_t *f, apr_bucket_brigade *bb)
    { if (APR_BRIGADE_EMPTY(bb)) { return APR_SUCCESS; diff --git a/docs/manual/handler.html.en b/docs/manual/handler.html.en index 6667be8186..1af20f9f27 100644 --- a/docs/manual/handler.html.en +++ b/docs/manual/handler.html.en @@ -133,7 +133,7 @@ AddHandler add-footer .html
    you may wish to make use of. Specifically, a new record has been added to the request_rec structure:

    -
          char *handler
    +
    char *handler

    If 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 b51089927f..6da85ebe6f 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 *handler

    Si 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 9ce5f2eb0f..b378dc7736 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.so

    ScriptAlias

    @@ -83,7 +83,7 @@

    The ScriptAlias directive 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 the cgi or pl extension as CGI programs:

    -
            AddHandler cgi-script .cgi .pl
    +
    AddHandler cgi-script .cgi .pl
    @@ -326,7 +326,7 @@ print "Hello, World.";
    interpreter (often perl) indicated in the first line of your CGI program, which will look something like:

    -
            #!/usr/bin/perl
    +
    #!/usr/bin/perl

    Make 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 ec62f7f6df..07dfcc3a88 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.so

    ScriptAlias

    @@ -80,7 +80,7 @@

    La directive ScriptAlias se 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 cgi ou pl en tant que programmes CGI :

    -
            AddHandler cgi-script .cgi .pl
    +
    AddHandler cgi-script .cgi .pl
    @@ -348,7 +348,7 @@ print "Hello, World."; trouve à la première ligne de votre programme CGI et qui va ressembler à ceci :

    -
            #!/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 2b3cec00a3..db920dfab3 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 .config
    diff --git a/docs/manual/howto/public_html.html.en b/docs/manual/howto/public_html.html.en index f09d957673..85a5ffc129 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 disabled
    UserDir enabled rbowen krietz
    diff --git a/docs/manual/howto/public_html.html.fr b/docs/manual/howto/public_html.html.fr index bcfc20c7bf..30976cf6ad 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 disabled
    +
    UserDir disabled
    UserDir enabled rbowen krietz
    diff --git a/docs/manual/howto/ssi.html.en b/docs/manual/howto/ssi.html.en index 36eb669d4e..ccaa1bd039 100644 --- a/docs/manual/howto/ssi.html.en +++ b/docs/manual/howto/ssi.html.en @@ -92,7 +92,7 @@ existing HTML documents.

    To permit SSI on your server, you must have the following directive either in your httpd.conf file, or in a .htaccess file:

    -
            Options +Includes
    +
    Options +Includes

    This 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
    AddOutputFilter INCLUDES .shtml
    @@ -118,7 +118,7 @@ existing HTML documents.

    directives would be executed.

    The other method is to use the XBitHack directive:

    -
            XBitHack on
    +
    XBitHack on

    XBitHack @@ -440,7 +440,7 @@ modified?

    In your configuration file, you could put the following line:

    -
            BrowserMatchNoCase macintosh Mac
    +
    BrowserMatchNoCase macintosh Mac
    BrowserMatchNoCase MSIE InternetExplorer
    diff --git a/docs/manual/howto/ssi.html.fr b/docs/manual/howto/ssi.html.fr index e1a32545c6..62d6c8f775 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 httpd.conf, ou dans un fichier .htaccess :

    -
            Options +Includes
    +
    Options +Includes

    Cette 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 .shtml
    +
    AddType text/html .shtml
    AddOutputFilter INCLUDES .shtml
    @@ -127,7 +127,7 @@ HTML pr SSI qu'elle contient soient traitées.

    Une autre méthode consiste à utiliser la directive XBitHack :

    -
            XBitHack on
    +
    XBitHack on

    La directive XBitHack @@ -452,7 +452,7 @@ HTML pr

    Vous pouvez ajouter les lignes suivantes dans votre fichier de configuration :

    -
            BrowserMatchNoCase macintosh Mac
    +
    BrowserMatchNoCase macintosh Mac
    BrowserMatchNoCase MSIE InternetExplorer
    diff --git a/docs/manual/logs.html.en b/docs/manual/logs.html.en index 5ae97eda53..7008c5c73e 100644 --- a/docs/manual/logs.html.en +++ b/docs/manual/logs.html.en @@ -164,7 +164,7 @@

    Do this by specifying the name of the module in your LogLevel directive:

    -
        LogLevel info rewrite:trace5
    +
    LogLevel info rewrite:trace5

    This sets the main LogLevel to info, but @@ -547,7 +547,7 @@ LogFormat "%!200,304,302{Referer}i" refererlog

    for this purpose. For example, to rotate the logs every 24 hours, you can use:

    -
          CustomLog "|/usr/local/apache/bin/rotatelogs /var/log/access_log 86400" common
    +
    CustomLog "|/usr/local/apache/bin/rotatelogs /var/log/access_log 86400" common

    Notice that quotes are used to enclose the entire command diff --git a/docs/manual/logs.html.fr b/docs/manual/logs.html.fr index be366228c9..cb98b84d8e 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:trace5

    Dans cet exemple, le niveau de journalisation général est défini @@ -593,7 +593,7 @@ LogFormat "%!200,304,302{Referer}i" refererlog

    appelé 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" common

    Notez 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 72a9201ab7..1e85057d20 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

    can be specified on a per module basis:

    -
                        LogLevel debug mod_ssl:warn
    +
    LogLevel debug mod_ssl:warn

    diff --git a/docs/manual/mod/core.html.en b/docs/manual/mod/core.html.en index 9ef8a70103..156210ac8d 100644 --- a/docs/manual/mod/core.html.en +++ b/docs/manual/mod/core.html.en @@ -143,7 +143,7 @@ available

    Using none for an argument will disable any accept filters for that protocol. This is useful for protocols that require a server send data first, such as ftp: or nntp:

    -
        AcceptFilter nntp none
    +
    AcceptFilter nntp none

    The default protocol names are https for port 443 diff --git a/docs/manual/mod/core.html.fr b/docs/manual/mod/core.html.fr index 494ce15947..392d8cb3dd 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, comme ftp: ou nntp:

    -
        AcceptFilter nntp none
    +
    AcceptFilter nntp none

    Les noms de protocoles par défaut sont https pour le diff --git a/docs/manual/mod/mod_access_compat.html.en b/docs/manual/mod/mod_access_compat.html.en index 93d1e07c30..0807bf02f2 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

    A network/netmask pair
    -
            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.

    @@ -166,7 +166,7 @@ Allow from 10 172.20 192.168.2
    A network/nnn CIDR specification
    -
            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.

    diff --git a/docs/manual/mod/mod_access_compat.html.fr b/docs/manual/mod/mod_access_compat.html.fr index 9be74d2ff5..f4fc48fbec 100644 --- a/docs/manual/mod/mod_access_compat.html.fr +++ b/docs/manual/mod/mod_access_compat.html.fr @@ -167,7 +167,7 @@ Allow from 10 172.20 192.168.2
    Une paire réseau/masque de sous-réseau
    -
            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

    Une spécification CIDR réseau/nnn
    -
            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.

    diff --git a/docs/manual/mod/mod_alias.html.en b/docs/manual/mod/mod_alias.html.en index eff1f68eac..0278821d26 100644 --- a/docs/manual/mod/mod_alias.html.en +++ b/docs/manual/mod/mod_alias.html.en @@ -126,7 +126,7 @@ Alias /foo /gaq URL-path is case-sensitive, even on case-insensitive file systems.

    -
          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
    AliasMatch ^/image/(.*)\.gif$ /files/gif.images/$1.gif
    @@ -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:

    -
          RedirectMatch (.*)\.gif$ http://other.example.com$1.jpg
    +
    RedirectMatch (.*)\.gif$ http://other.example.com$1.jpg

    The 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/foo would cause the @@ -453,7 +453,7 @@ target as a CGI script

    ScriptAlias can 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.pl

    In 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$1

    As 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$1

    The 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 2610e0cb56..cc1d45ed48 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/image

    Une requête pour http://example.com/image/foo.gif fera @@ -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éfinissez

    -
          Alias /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$1

    Toute 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$1

    Il existe une différence subtile entre Alias et AliasMatch : Alias copie automatiquement toute @@ -232,20 +232,20 @@ en faisant intervenir les expressions rationnelles

    Par 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/$1

    Bien entendu, il n'y a aucune raison d'utiliser AliasMatch dans le cas où Alias suffit. AliasMatch vous 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
    AliasMatch ^/image/(.*)\.gif$ /fichiers/gif.images/$1.gif
    @@ -392,7 +392,7 @@ courante les fichiers GIF vers les fichiers JPEG de même nom sur un autre serveur, on peut utiliser :

    -
          RedirectMatch (.*)\.gif$ http://autre.example.com$1.jpg
    +
    RedirectMatch (.*)\.gif$ http://autre.example.com$1.jpg

    Les remarques à propos de la différence entre Alias et AliasMatch s'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 d

    Vous pouvez aussi utiliser ScriptAlias avec un script ou gestionnaire de votre cru. Par exemple :

    -
    	  ScriptAlias /cgi-bin/ /web/cgi-handler.pl
    +
    ScriptAlias /cgi-bin/ /web/cgi-handler.pl

    Dans 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$1

    Comme 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$1

    Les remarques à propos de la différence entre Alias et AliasMatch s'appliquent aussi à la diff --git a/docs/manual/mod/mod_authn_anon.html.en b/docs/manual/mod/mod_authn_anon.html.en index c3d00c2ed4..7a81e59549 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.

    -

    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 61eb1a5eb6..b72d19a040 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.

    -

    Exemple:

          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 46688e0ac9..00775c12a3 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 AuthName is what will diff --git a/docs/manual/mod/mod_authn_core.html.fr b/docs/manual/mod/mod_authn_core.html.fr index d0d5b9f0b6..531cec124c 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 HTTP

    Par exemple :

    -
         AuthName "Top Secret"
    +
    AuthName "Top Secret"

    La chaîne fournie comme argument à AuthName diff --git a/docs/manual/mod/mod_authnz_ldap.html.en b/docs/manual/mod/mod_authnz_ldap.html.en index 54ff25503b..b65d85f0d6 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 lookup AuthLDAPBindDN.

    -
     AuthLDAPInitialBindPattern (.+) $1@example.com
    +
    AuthLDAPInitialBindPattern (.+) $1@example.com
    -
     AuthLDAPInitialBindPattern (.+) cn=$1,dc=example,dc=com
    +
    AuthLDAPInitialBindPattern (.+) cn=$1,dc=example,dc=com

    Not 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 ffbfaaf194..6ad7bd5035 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 directive AuthLDAPBindDN.

    -
     AuthLDAPInitialBindPattern (.+) $1@example.com
    +
    AuthLDAPInitialBindPattern (.+) $1@example.com
    -
     AuthLDAPInitialBindPattern (.+) cn=$1,dc=example,dc=com
    +
    AuthLDAPInitialBindPattern (.+) cn=$1,dc=example,dc=com

    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 e0d01f921a..2c70ec1e53 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 OPTIONS

    The following example will allow GET, HEAD, POST, and OPTIONS @@ -202,7 +202,7 @@

    The expr provider 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 c35b4adf9f..b869a9f8a0 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'autorisation

    Dans l'exemple suivant, seules les méthodes GET, HEAD, POST, et OPTIONS sont autorisées :

    -
            Require method GET POST OPTIONS
    +
    Require method GET POST OPTIONS

    Dans l'exemple suivant, les méthodes GET, HEAD, POST, et OPTIONS @@ -191,7 +191,7 @@ d'autorisation

    Le fournisseur expr permet 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 eca5417e98..e4eae57491 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-group
    diff --git a/docs/manual/mod/mod_authz_dbm.html.fr b/docs/manual/mod/mod_authz_dbm.html.fr index b3f99c876b..2a6ccc9695 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-group
    diff --git a/docs/manual/mod/mod_authz_groupfile.html.en b/docs/manual/mod/mod_authz_groupfile.html.en index e6748ed1c1..c6fdf00758 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-group
    diff --git a/docs/manual/mod/mod_authz_groupfile.html.fr b/docs/manual/mod/mod_authz_groupfile.html.fr index c9116aea40..ec08e4848a 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 appartenance

    Cette 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 appartenance

    Lorsque cette directive est définie, l'utilisateur doit appartenir au groupe du fichier pour pouvoir y accéder.

    -
          Require file-group
    +
    Require file-group
    diff --git a/docs/manual/mod/mod_authz_host.html.en b/docs/manual/mod/mod_authz_host.html.en index 0c659ab241..5f6a23a4a3 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.2

    A network/netmask pair:

    -
          Require ip 10.1.0.0/255.255.0.0
    +
    Require ip 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.

    A network/nnn CIDR specification:

    -
          Require ip 10.1.0.0/16
    +
    Require ip 10.1.0.0/16

    Similar to the previous case, except the netmask consists of nnn high-order 1 bits.

    @@ -175,7 +175,7 @@ Require host .net example.edu

    This allows a convenient way to match connections that originate from the local host:

    -
        Require local
    +
    Require local
    diff --git a/docs/manual/mod/mod_authz_host.html.fr b/docs/manual/mod/mod_authz_host.html.fr index d0ff0371e2..397d1cd905 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.2

    Une 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.0

    Un 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/16

    Identique 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.edu

    L'exemple suivant montre une méthode simple pour sélectionner les connexions en provenance de l'hôte local :

    -
        Require local
    +
    Require local
    diff --git a/docs/manual/mod/mod_authz_user.html.en b/docs/manual/mod/mod_authz_user.html.en index ace8715b2f..cb7ffab043 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-user
    diff --git a/docs/manual/mod/mod_authz_user.html.fr b/docs/manual/mod/mod_authz_user.html.fr index e3c50732db..9dba5d433a 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-user
    diff --git a/docs/manual/mod/mod_autoindex.html.en b/docs/manual/mod/mod_autoindex.html.en index 792dfc50f8..cf26e3c763 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-gzip
    @@ -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.

    -
          AddAltByType 'plain text' text/plain
    +
    AddAltByType 'plain text' text/plain
    @@ -393,7 +393,7 @@ content-encoding

    MIME-encoding is a valid content-encoding, such as x-compress.

    -
          AddIconByEncoding /icons/compress.png x-compress
    +
    AddIconByEncoding /icons/compress.png x-compress
    @@ -420,7 +420,7 @@ content-type

    MIME-type is a wildcard expression matching required the mime types.

    -
          AddIconByType (IMG,/icons/image.png) image/*
    +
    AddIconByType (IMG,/icons/image.png) image/*
    @@ -440,7 +440,7 @@ configured Url-path is a (%-escaped) relative URL to the icon, or a fully qualified remote URL.

    -
          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 DocumentRoot.

    -
            HeaderName /include/HEADER.html
    +
    HeaderName /include/HEADER.html

    Filename 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/html such as with a directive like:

    -
            AddType text/html .cgi
    +
    AddType text/html .cgi

    Content negotiation @@ -515,7 +515,7 @@ of the index listing

    The IndexHeadInsert directive 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\">"
    @@ -539,7 +539,7 @@ a directory files. By default, the list contains . (the current directory).

    -
          IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
    +
    IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t

    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 @@ indexing

    will be the equivalent of

    -
           IndexOptions HTMLTable SuppressColumnsorting
    +
    IndexOptions HTMLTable SuppressColumnsorting
    @@ -960,7 +960,7 @@ Name|Date|Size|Description

    The IndexStyleSheet directive 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 34b9562812..c31d089c97 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-gzip
    @@ -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é.

    -
          AddAltByType 'Fichier texte' text/plain
    +
    AddAltByType 'Fichier texte' text/plain
    @@ -417,7 +417,7 @@ codage MIME

    codage 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 MIME

    type 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 DocumentRoot.

    -
            HeaderName /include/HEADER.html
    +
    HeaderName /include/HEADER.html

    nom fichier doit correspondre à un document dont le @@ -508,7 +508,7 @@ contenant l'index sortie) est marqué comme text/html par exemple à l'aide d'une directive comme :

    -
            AddType text/html .cgi
    +
    AddType text/html .cgi

    Une négociation de @@ -549,7 +549,7 @@ d'index. spécifier une chaîne de caractères à insérer dans la section <head> du code HTML généré pour la page d'index.

    -
          IndexHeadInsert "<link rel=\"sitemap\" href=\"/sitemap.html\">"
    +
    IndexHeadInsert "<link rel=\"sitemap\" href=\"/sitemap.html\">"
    @@ -574,7 +574,7 @@ de l'index d'un r ignorer. Par défaut, la liste contient . (le répertoire courant).

    -
          IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
    +
    IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t

    Expressions 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 @@ r

    est é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 8cca87c4d3..a8638c7b02 100644 --- a/docs/manual/mod/mod_buffer.html.en +++ b/docs/manual/mod/mod_buffer.html.en @@ -58,7 +58,7 @@ AddOutputFilter or AddOutputFilterByType directives.

    -

    Using buffer with mod_include

            AddOutputFilterByType INCLUDES;BUFFER text/html
    +

    Using buffer with mod_include

    AddOutputFilterByType INCLUDES;BUFFER text/html
    The 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 5276befae3..5373f6f4b0 100644 --- a/docs/manual/mod/mod_buffer.html.fr +++ b/docs/manual/mod/mod_buffer.html.fr @@ -60,7 +60,7 @@ d'Apache directives SetInputFilter, SetOutputFilter, AddOutputFilter ou AddOutputFilterByType.

    -

    Utilisation d'un tampon avec mod_include

            AddOutputFilterByType INCLUDES;BUFFER text/html
    +

    Utilisation d'un tampon avec mod_include

    AddOutputFilterByType INCLUDES;BUFFER text/html
    Les 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 ed17c8d1db..475210558c 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 LogFormat directive 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 CacheMaxExpire directive does not override this setting.

    -
          CacheDefaultExpire 86400
    +
    CacheDefaultExpire 86400
    @@ -415,7 +415,7 @@ CacheDetailHeader on mod_cache to not cache urls at or below url-string.

    -

    Example

          CacheDisable /local_files
    +

    Example

    CacheDisable /local_files

    If 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

    Warning:

    @@ -624,10 +624,10 @@ CacheHeader on behaviour), CacheIgnoreHeaders can be set to None.

    -

    Example 1

          CacheIgnoreHeaders Set-Cookie
    +

    Example 1

    CacheIgnoreHeaders Set-Cookie
    -

    Example 2

          CacheIgnoreHeaders None
    +

    Example 2

    CacheIgnoreHeaders None

    Warning:

    @@ -660,7 +660,7 @@ header. CacheDefaultExpire directive will be used to generate an expiration date.

    -
          CacheIgnoreNoLastMod On
    +
    CacheIgnoreNoLastMod On
    @@ -683,7 +683,7 @@ header. view the request is treated as if having no query string when this directive is enabled.

    -
          CacheIgnoreQueryString On
    +
    CacheIgnoreQueryString On
    @@ -715,10 +715,10 @@ header.

    CacheIgnoreURLSessionIdentifiers None clears the list of ignored identifiers. Otherwise, each identifier is added to the list.

    -

    Example 1

          CacheIgnoreURLSessionIdentifiers jsessionid
    +

    Example 1

    CacheIgnoreURLSessionIdentifiers jsessionid
    -

    Example 2

          CacheIgnoreURLSessionIdentifiers None
    +

    Example 2

    CacheIgnoreURLSessionIdentifiers None
    @@ -782,7 +782,7 @@ LastModified date. CacheMaxExpire, then the latter takes precedence.

    -
          CacheLastModifiedFactor 0.5
    +
    CacheLastModifiedFactor 0.5
    @@ -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.

    -
          CacheMaxExpire 604800
    +
    CacheMaxExpire 604800
    @@ -880,7 +880,7 @@ CacheLock on server. This is only used if no valid expire time was supplied with the document.

    -
          CacheMinExpire 3600
    +
    CacheMinExpire 3600
    @@ -971,7 +971,7 @@ CacheStaleOnError on the origin server, and the response may be fulfilled from cache if the backend resource has not changed.

    -
          CacheStoreExpired On
    +
    CacheStoreExpired On
    @@ -992,7 +992,7 @@ CacheStaleOnError on tells the server to attempt to cache the resource even if it contains no-store header values.

    -
          CacheStoreNoStore On
    +
    CacheStoreNoStore On

    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

    Warning:

    diff --git a/docs/manual/mod/mod_cache.html.fr b/docs/manual/mod/mod_cache.html.fr index 657aefcba0..ee52a91e3f 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 directive LogFormat comme 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 CacheMaxExpire si cette dernière est utilisée.

    -
          CacheDefaultExpire 86400
    +
    CacheDefaultExpire 86400
    @@ -461,7 +461,7 @@ sp spécifiée par chaîne URL, ainsi que les URLs de niveaux inférieurs.

    -

    Exemple

          CacheDisable /fichiers_locaux
    +

    Exemple

    CacheDisable /fichiers_locaux

    Si 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

    Avertissement :

    @@ -692,10 +692,10 @@ le contenu au client depuis le cache CacheIgnoreHeaders peut être définie à None.

    -

    Exemple 1

          CacheIgnoreHeaders Set-Cookie
    +

    Exemple 1

    CacheIgnoreHeaders Set-Cookie
    -

    Exemple 2

          CacheIgnoreHeaders None
    +

    Exemple 2

    CacheIgnoreHeaders None

    Avertissement :

    @@ -731,7 +731,7 @@ Modified. d'expiration.

    -
          CacheIgnoreNoLastMod On
    +
    CacheIgnoreNoLastMod On
    @@ -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.

    -
          CacheIgnoreQueryString 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.

    -

    Exemple 1

          CacheIgnoreURLSessionIdentifiers jsessionid
    +

    Exemple 1

    CacheIgnoreURLSessionIdentifiers jsessionid
    -

    Exemple 2

          CacheIgnoreURLSessionIdentifiers None
    +

    Exemple 2

    CacheIgnoreURLSessionIdentifiers None
    @@ -866,7 +866,7 @@ fonction de la date de derni directive CacheMaxExpire, c'est ce dernier qui l'emporte.

    -
          CacheLastModifiedFactor 0.5
    +
    CacheLastModifiedFactor 0.5
    @@ -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.

    -
          CacheMaxExpire 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 3600
    @@ -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.

    -
          CacheStoreExpired 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 On
    diff --git a/docs/manual/mod/mod_cache_disk.html.en b/docs/manual/mod/mod_cache_disk.html.en index 8f23545cc5..8fc749b3e4 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 64000
    @@ -176,7 +176,7 @@ cache minimum size, in bytes, for a document to be considered for storage in the cache.

    -
          CacheMinFileSize 64
    +
    CacheMinFileSize 64
    @@ -202,7 +202,7 @@ cache

    This 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
    @@ -232,7 +232,7 @@ cache ensure that the server does not buffer excessively should data arrive faster than expected.

    -
          CacheReadTime 1000
    +
    CacheReadTime 1000
    @@ -253,7 +253,7 @@ stored a configuration file processing error. The CacheDirLevels and CacheDirLength directives define the structure of the directories under the specified root directory.

    -
          CacheRoot c:/cacheroot
    +
    CacheRoot c:/cacheroot
    diff --git a/docs/manual/mod/mod_cache_disk.html.fr b/docs/manual/mod/mod_cache_disk.html.fr index f65c3c2767..e7e5bbda06 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.

    -
          CacheMaxFileSize 64000
    +
    CacheMaxFileSize 64000
    @@ -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.

    -
          CacheMinFileSize 64
    +
    CacheMinFileSize 64
    @@ -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.

    -
          CacheReadSize 102400
    +
    CacheReadSize 102400
    @@ -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.

    -
          CacheReadTime 1000
    +
    CacheReadTime 1000
    @@ -271,7 +271,7 @@ seront stock définir la structure des sous-répertoires du répertoire racine spécifié.

    -
          CacheRoot c:/cacheroot
    +
    CacheRoot c:/cacheroot
    diff --git a/docs/manual/mod/mod_cache_socache.html.en b/docs/manual/mod/mod_cache_socache.html.en index d15ea2e4c5..b738336b83 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.

    -
          CacheSocache shmcb
    +
    CacheSocache shmcb
    @@ -128,7 +128,7 @@ cache responses larger than those cacheable within mod_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 @@ cache

    This 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 1000
    diff --git a/docs/manual/mod/mod_cache_socache.html.fr b/docs/manual/mod/mod_cache_socache.html.fr index 7188d4faf2..d9606bfc87 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 par mod_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 1000
    diff --git a/docs/manual/mod/mod_cern_meta.html.en b/docs/manual/mod/mod_cern_meta.html.en index 710afdbdff..f8668b9ed0 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.

    -

    Example:

          MetaSuffix .meta
    +

    Example:

    MetaSuffix .meta
    diff --git a/docs/manual/mod/mod_cern_meta.html.fr b/docs/manual/mod/mod_cern_meta.html.fr index efa3772b17..2c861b2bff 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.

    -

    Exemple :

          MetaSuffix .meta
    +

    Exemple :

    MetaSuffix .meta
    diff --git a/docs/manual/mod/mod_cgi.html.en b/docs/manual/mod/mod_cgi.html.en index afd65139a1..165fc0a712 100644 --- a/docs/manual/mod/mod_cgi.html.en +++ b/docs/manual/mod/mod_cgi.html.en @@ -178,7 +178,7 @@ taken relative to the ServerRoot.

    -

    Example

          ScriptLog logs/cgi_log
    +

    Example

    ScriptLog logs/cgi_log

    This 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 8da611652d..3d6a66f385 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_log

    Ce 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 dd4b9c7000..80e0d5a597 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
    +

    Example

    CGIDScriptTimeout 20
    @@ -121,7 +121,7 @@ the cgi daemon will be relative to the value of DefaultRuntimeDir.

    -

    Example

          ScriptSock /var/run/cgid.sock
    +

    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 84c710300c..d53b227485 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.

    -

    Exemple

          CGIDScriptTimeout 20
    +

    Exemple

    CGIDScriptTimeout 20
    @@ -125,7 +125,7 @@ communiquer avec le d

    Si 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
    +

    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 a6c0ce6470..0086772fbb 100644 --- a/docs/manual/mod/mod_dav.html.en +++ b/docs/manual/mod/mod_dav.html.en @@ -78,7 +78,7 @@ file using the DavLockDB directive:

    -
          DavLockDB /usr/local/apache2/var/DavLock
    +
    DavLockDB /usr/local/apache2/var/DavLock

    The 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 aa02dd949e..c8c801ed22 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 DavLockDB dans la section globale de votre fichier httpd.conf :

    -
          DavLockDB /usr/local/apache2/var/DavLock
    +
    DavLockDB /usr/local/apache2/var/DavLock

    Le 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 f6350bc4be..8c63fe06df 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 Dav directive:

    -

    Example

          Dav filesystem
    +

    Example

    Dav filesystem

    Since filesystem is the default provider for @@ -74,7 +74,7 @@ -

    Example

          DavLockDB var/DavLock
    +

    Example

    DavLockDB var/DavLock

    The 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 44da75d63f..a11a619027 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_dav sont invoqués via la directive Dav :

    -

    Exemple

          Dav filesystem
    +

    Exemple

    Dav filesystem

    Comme filesystem est le fournisseur par défaut de @@ -77,7 +77,7 @@ -

    Exemple

          DavLockDB var/DavLock
    +

    Exemple

    DavLockDB var/DavLock

    Les 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 1daf4113fd..d4fd6bff9e 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_lock uses a SDBM database to track user locks.

    -

    Example

          DavGenericLockDB var/DavLock
    +

    Example

    DavGenericLockDB var/DavLock

    The 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 9959f8c0ea..974f3c0519 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_lock utilise une base de données SDBM pour surveiller les verrous utilisateurs.

    -

    Exemple

          DavGenericLockDB var/DavLock
    +

    Exemple

    DavGenericLockDB var/DavLock

    Les 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 6410b8d8f0..76a2e7bc43 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.

    -

    Compress 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/javascript
    top
    @@ -172,7 +172,7 @@ SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip in a typical configuration where the addition of the DEFLATE filter depends on the User-Agent, you should add:

    -
          Header append Vary User-Agent
    +
    Header append Vary User-Agent

    If your decision about compression depends on other information @@ -180,7 +180,7 @@ SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip Vary header to the value *. This prevents compliant proxies from caching entirely.

    -

    Example

          Header set Vary *
    +

    Example

    Header set Vary *
    top
    diff --git a/docs/manual/mod/mod_deflate.html.fr b/docs/manual/mod/mod_deflate.html.fr index 45714e3758..5e8b7c4065 100644 --- a/docs/manual/mod/mod_deflate.html.fr +++ b/docs/manual/mod/mod_deflate.html.fr @@ -69,7 +69,7 @@ client

    Voici un exemple simple de configuration qui permet de comprimer les types de contenu à base de texte.

    -

    Ne 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/javascript
    top
    @@ -186,7 +186,7 @@ SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip DEFLATE dépend du contenu de l'en-tête User-Agent, vous devez spécifier :

    -
          Header append Vary User-Agent
    +
    Header append Vary User-Agent

    Si votre décision de comprimer le contenu dépend d'autres @@ -195,7 +195,7 @@ SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip Vary la valeur *, ce qui permet d'empêcher les mandataires compatibles de tout mettre en cache.

    -

    Exemple

          Header set Vary *
    +

    Exemple

    Header set Vary *
    top
    diff --git a/docs/manual/mod/mod_dir.html.en b/docs/manual/mod/mod_dir.html.en index 36f9b8f0db..b5ebafab60 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.

    -

    Example

          DirectoryIndex index.html
    +

    Example

    DirectoryIndex index.html

    then a request for http://example.com/docs/ would @@ -130,7 +130,7 @@ a directory

    Note 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.pl

    would cause the CGI script /cgi-bin/index.pl to be @@ -198,7 +198,7 @@ a directory -

    Example

          DirectoryIndexRedirect on
    +

    Example

    DirectoryIndexRedirect on

    A request for http://example.com/docs/ would @@ -274,7 +274,7 @@ a directory

    Use 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.php

    will cause requests for non-existent files to be handled by not-404.php, while requests for files that exist @@ -287,7 +287,7 @@ a directory mod_rewrite, and the use of the -f and -d tests for file and directory existence. This now requires only one line of configuration.

    -
            FallbackResource /index.php
    +
    FallbackResource /index.php

    Existing 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 2e1a6f2cad..3f7609c492 100644 --- a/docs/manual/mod/mod_dir.html.fr +++ b/docs/manual/mod/mod_dir.html.fr @@ -127,7 +127,7 @@ client envoie une requ Indexes est définie, le serveur générera son propre listing du répertoire.

    -

    Exemple

          DirectoryIndex index.html
    +

    Exemple

    DirectoryIndex index.html

    Avec 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.pl

    provoquerait l'exécution du script CGI @@ -215,7 +215,7 @@ r -

    Exemple

          DirectoryIndexRedirect on
    +

    Exemple

    DirectoryIndexRedirect on

    Une 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 exemple

    -
            FallbackResource /not-404.php
    +
    FallbackResource /not-404.php

    fait 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 -f et -d pour vérifier l'existence des fichiers et répertoires. Maintenant, une seule ligne de configuration est nécessaire.

    -
            FallbackResource /index.php
    +
    FallbackResource /index.php

    Les 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 403ff6f983..a9abaacb4a 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_dumpio needs to be configured to LogLevel trace7:

    -
          LogLevel dumpio:trace7
    +
    LogLevel dumpio:trace7
    top
    @@ -78,7 +78,7 @@

    Enable dumping of all input.

    -

    Example

          DumpIOInput On
    +

    Example

    DumpIOInput On
    @@ -94,7 +94,7 @@

    Enable dumping of all output.

    -

    Example

          DumpIOOutput On
    +

    Example

    DumpIOOutput On
    diff --git a/docs/manual/mod/mod_echo.html.en b/docs/manual/mod/mod_echo.html.en index 77bdbb6196..a56ead5792 100644 --- a/docs/manual/mod/mod_echo.html.en +++ b/docs/manual/mod/mod_echo.html.en @@ -59,7 +59,7 @@ modules

    The ProtocolEcho directive enables or disables the echo server.

    -

    Example

          ProtocolEcho On
    +

    Example

    ProtocolEcho On
    diff --git a/docs/manual/mod/mod_echo.html.fr b/docs/manual/mod/mod_echo.html.fr index 31f6aa37c8..c20ee8f656 100644 --- a/docs/manual/mod/mod_echo.html.fr +++ b/docs/manual/mod/mod_echo.html.fr @@ -59,7 +59,7 @@ protocole

    La directive ProtocolEcho permet d'activer ou de désactiver le serveur d'écho.

    -

    Exemple

          ProtocolEcho On
    +

    Exemple

    ProtocolEcho On
    diff --git a/docs/manual/mod/mod_env.html.en b/docs/manual/mod/mod_env.html.en index 77199b21eb..cb506f04d0 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 the httpd process.

    -

    Example

          PassEnv LD_LIBRARY_PATH
    +

    Example

    PassEnv LD_LIBRARY_PATH
    @@ -90,7 +90,7 @@ SSI pages

    Sets an internal environment variable, which is then available to Apache HTTP Server modules, and passed on to CGI scripts and SSI pages.

    -

    Example

          SetEnv SPECIAL_PATH /foo/bin
    +

    Example

    SetEnv SPECIAL_PATH /foo/bin

    If 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.

    -

    Example

          UnsetEnv LD_LIBRARY_PATH
    +

    Example

    UnsetEnv LD_LIBRARY_PATH
    diff --git a/docs/manual/mod/mod_env.html.fr b/docs/manual/mod/mod_env.html.fr index e6ce3b852b..ba6c648720 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 processus httpd.

    -

    Exemple

          PassEnv LD_LIBRARY_PATH
    +

    Exemple

    PassEnv LD_LIBRARY_PATH
    @@ -95,7 +95,7 @@ shell ensuite disponible pour les modules du serveur HTTP Apache et transmise aux scripts CGI et aux pages SSI.

    -

    Exemple

          SetEnv SPECIAL_PATH /foo/bin
    +

    Exemple

    SetEnv SPECIAL_PATH /foo/bin

    Si 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.

    -

    Exemple

          UnsetEnv LD_LIBRARY_PATH
    +

    Exemple

    UnsetEnv LD_LIBRARY_PATH
    diff --git a/docs/manual/mod/mod_example.html.en b/docs/manual/mod/mod_example.html.en index 9e61283090..b01415f5e8 100644 --- a/docs/manual/mod/mod_example.html.en +++ b/docs/manual/mod/mod_example.html.en @@ -121,7 +121,7 @@

    As an alternative, you can put the following into a .htaccess file and then request the file "test.example" from that location:

    -
       AddHandler example-handler .example
    +
    AddHandler example-handler .example

    After 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 fb6aaa7ebf..8da0f258a2 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 .example
    diff --git a/docs/manual/mod/mod_ext_filter.html.en b/docs/manual/mod/mod_ext_filter.html.en index e7a196da3b..cfcffa1b8f 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 LogStderr

    Messages 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 4d782b71cc..6765649eee 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 LogStderr

    Les 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 af31b47abe..b5307d8c85 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_alias or mod_rewrite.

    -

    Example

          CacheFile /usr/local/apache/htdocs/index.html
    +

    Example

    CacheFile /usr/local/apache/htdocs/index.html
    @@ -198,7 +198,7 @@ with filenames rewritten by mod_alias or mod_rewrite.

    -

    Example

          MMapFile /usr/local/apache/htdocs/index.html
    +

    Example

    MMapFile /usr/local/apache/htdocs/index.html
    diff --git a/docs/manual/mod/mod_file_cache.html.fr b/docs/manual/mod/mod_file_cache.html.fr index fa85edd7c3..877c81aa4d 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 par mod_alias ou mod_rewrite.

    -

    Exemple

          CacheFile /usr/local/apache/htdocs/index.html
    +

    Exemple

    CacheFile /usr/local/apache/htdocs/index.html
    @@ -230,7 +230,7 @@ m fichiers réécrits par mod_alias ou mod_rewrite.

    -

    Exemple

          MMapFile /usr/local/apache/htdocs/index.html
    +

    Exemple

    MMapFile /usr/local/apache/htdocs/index.html
    diff --git a/docs/manual/mod/mod_filter.html.en b/docs/manual/mod/mod_filter.html.en index 9a1b3d238c..d50568d120 100644 --- a/docs/manual/mod/mod_filter.html.en +++ b/docs/manual/mod/mod_filter.html.en @@ -279,7 +279,7 @@ being moved to mod_filter< text/html or text/plain before it is sent to the client.

    -
          AddOutputFilterByType DEFLATE text/html text/plain
    +
    AddOutputFilterByType DEFLATE text/html text/plain

    If 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 d0ffb15f2d..503341e301 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.

    -

    Example

          FirehoseConnectionInput connection-input.firehose
    +

    Example

    FirehoseConnectionInput connection-input.firehose
    @@ -195,7 +195,7 @@ later. Multiple requests will be captured within the same connection if keepalive is present.

    -

    Example

          FirehoseConnectionOutput connection-output.firehose
    +

    Example

    FirehoseConnectionOutput connection-output.firehose
    @@ -213,7 +213,7 @@ later.

    Capture traffic being received by mod_proxy.

    -

    Example

          FirehoseProxyConnectionInput proxy-input.firehose
    +

    Example

    FirehoseProxyConnectionInput proxy-input.firehose
    @@ -231,7 +231,7 @@ later.

    Capture traffic being sent out by mod_proxy.

    -

    Example

          FirehoseProxyConnectionOutput proxy-output.firehose
    +

    Example

    FirehoseProxyConnectionOutput proxy-output.firehose
    @@ -250,7 +250,7 @@ later.

    Capture traffic coming into the server on each request. Requests will be captured separately, regardless of the presence of keepalive.

    -

    Example

          FirehoseRequestInput request-input.firehose
    +

    Example

    FirehoseRequestInput request-input.firehose
    @@ -269,7 +269,7 @@ later.

    Capture traffic going out of the server on each request. Requests will be captured separately, regardless of the presence of keepalive.

    -

    Example

          FirehoseRequestOutput request-output.firehose
    +

    Example

    FirehoseRequestOutput request-output.firehose
    diff --git a/docs/manual/mod/mod_headers.html.en b/docs/manual/mod/mod_headers.html.en index 3731b5dccc..0fb21eb2eb 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: -
              Header 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
  1. Set a test cookie if and only if the client didn't send us a cookie -
              Header set Set-Cookie testcookie "expr=-z %{req:Cookie}"
    +
    Header set Set-Cookie testcookie "expr=-z %{req:Cookie}"
diff --git a/docs/manual/mod/mod_headers.html.fr b/docs/manual/mod/mod_headers.html.fr index 65fe6b692b..aedc36b737 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 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 -
              Header set Set-Cookie testcookie "expr=-z %{req:Cookie}"
    +
    Header set Set-Cookie testcookie "expr=-z %{req:Cookie}"
  • diff --git a/docs/manual/mod/mod_heartmonitor.html.en b/docs/manual/mod/mod_heartmonitor.html.en index 81a7faf403..d6ead94942 100644 --- a/docs/manual/mod/mod_heartmonitor.html.en +++ b/docs/manual/mod/mod_heartmonitor.html.en @@ -77,7 +77,7 @@ use mod_slotmem_shmHeartbeatAddress on an origin server.

    -
        HeartbeatListen 239.0.0.1:27999
    +
    HeartbeatListen 239.0.0.1:27999

    This 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 bc8935ca83..7483e48e17 100644 --- a/docs/manual/mod/mod_include.html.en +++ b/docs/manual/mod/mod_include.html.en @@ -91,7 +91,7 @@ AddOutputFilter INCLUDES .shtml AllowOverride Options is set):

    -
          Options +Includes
    +
    Options +Includes

    For backwards compatibility, the server-parsed @@ -815,7 +815,7 @@ AddOutputFilter INCLUDES .shtml

    This directive changes the string that mod_include looks 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 -->"
    @@ -966,7 +966,7 @@ server. output of a file each processing different commands (possibly at different times).

    -
          SSIStartTag "<%"
    +
    SSIStartTag "<%"
    SSIEndTag "%>"
    @@ -1004,7 +1004,7 @@ displayed

    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_include displays when a variable is not set and "echoed".

    -
          SSIUndefinedEcho "<!-- undef -->"
    +
    SSIUndefinedEcho "<!-- undef -->"
    diff --git a/docs/manual/mod/mod_isapi.html.en b/docs/manual/mod/mod_isapi.html.en index f95d17b5a1..8ddb0f0d6e 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:

    -
            AddHandler isapi-handler .dll
    +
    AddHandler isapi-handler .dll
    In 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.dll

    Whether 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 fb96dd47de..0bc6c143fb 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
    +

    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 7d8e49803e..c9a34c5391 100644 --- a/docs/manual/mod/mod_log_debug.html.en +++ b/docs/manual/mod/mod_log_debug.html.en @@ -68,7 +68,7 @@
  • Log message if an IPv6 client causes a request timeout: -
                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 the expr= argument.
  • diff --git a/docs/manual/mod/mod_lua.html.en b/docs/manual/mod/mod_lua.html.en index f1d1bd6719..64e81e3625 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.

    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, specify mod_dbd as 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 @@ end

    Like LuaHookTranslateName but 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_cache
    require"apache2"
     cached_files = {}
    @@ -1542,7 +1542,7 @@ end
    This 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_checker
        function 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_$2

    This 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.lua

    This 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 db084093e7..51ab115934 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_dbd comme 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_cache
    require"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_$2

    Cette 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.lua

    Cette 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 2f0ad51dc2..bb7f7a608a 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 .cgi

    Once that has been put into your httpd.conf file, any file containing @@ -492,7 +492,7 @@ responses from the server .shtml files for server-side includes and will then compress the output using mod_deflate.

    -
          AddOutputFilter INCLUDES;DEFLATE shtml
    +
    AddOutputFilter INCLUDES;DEFLATE shtml

    If more than one filter is specified, they must be separated @@ -562,12 +562,12 @@ type TypesConfig file.

    -

    Example

          AddType image/gif .gif
    +

    Example

    AddType image/gif .gif

    Or, to specify multiple file extensions in one directive:

    -

    Example

          AddType image/jpeg jpeg jpg jpe
    +

    Example

    AddType image/jpeg jpeg jpg jpe

    The 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 .xml

    This 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 en

    See also

    @@ -654,7 +654,7 @@ components as part of the filename

    This directive is recommended when you have a virtual filesystem.

    -

    Example

          ModMimeUsePathInfo On
    +

    Example

    ModMimeUsePathInfo On

    If 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

    MultiviewsMatch is not allowed in a @@ -752,7 +752,7 @@ extensions

    The extension argument is case-insensitive and can be specified with or without a leading dot.

    -

    Example

          RemoveCharset .html .shtml
    +

    Example

    RemoveCharset .html .shtml
    @@ -814,10 +814,10 @@ extensions associations inherited from parent directories or the server config files. An example of its use might be:

    -

    /foo/.htaccess:

          AddHandler server-parsed .html
    +

    /foo/.htaccess:

    AddHandler server-parsed .html
    -

    /foo/bar/.htaccess:

          RemoveHandler .html
    +

    /foo/bar/.htaccess:

    RemoveHandler .html

    This has the effect of returning .html files in @@ -900,7 +900,7 @@ extensions

    The extension argument is case-insensitive and can be specified with or without a leading dot.

    -

    Example

          RemoveOutputFilter shtml
    +

    Example

    RemoveOutputFilter shtml

    See 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 .cgi

    This will remove any special handling of .cgi diff --git a/docs/manual/mod/mod_mime_magic.html.en b/docs/manual/mod/mod_mime_magic.html.en index f27af8917e..821e90d2b6 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.

    -

    Example

          MimeMagicFile conf/magic
    +

    Example

    MimeMagicFile conf/magic
    diff --git a/docs/manual/mod/mod_negotiation.html.en b/docs/manual/mod/mod_negotiation.html.en index 2c52933563..6c106df599 100644 --- a/docs/manual/mod/mod_negotiation.html.en +++ b/docs/manual/mod/mod_negotiation.html.en @@ -192,7 +192,7 @@ Negotiation and the .var file should be associated with the type-map handler with an AddHandler directive:

    -
        AddHandler type-map .var
    +
    AddHandler type-map .var

    A request for document.html.var in 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 de

    For 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 6af194ef64..957d8fa076 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 .var doit être associé au gestionnaire type-map via une directive AddHandler :

    -
        AddHandler type-map .var
    +
    AddHandler type-map .var

    A 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 de

    Dans 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 70651a6d5d..84180b539c 100644 --- a/docs/manual/mod/mod_proxy.html.en +++ b/docs/manual/mod/mod_proxy.html.en @@ -233,7 +233,7 @@ ProxyVia On ProxyPassMatch when used for a reverse proxy:

    -
              ProxyPass /example http://backend.example.com connectiontimeout=5 timeout=30
    +
    ProxyPass /example http://backend.example.com connectiontimeout=5 timeout=30

    This 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 ProxySet directive:

    -
              ProxySet http://backend.example.com connectiontimeout=5 timeout=30
    +
    ProxySet http://backend.example.com connectiontimeout=5 timeout=30

    or alternatively using Proxy @@ -799,7 +799,7 @@ response

    Note 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.com

    Note that example would also be sufficient to match any @@ -809,7 +809,7 @@ response

    Note also that

    -
          ProxyBlock *
    +
    ProxyBlock *

    blocks connections to all sites.

    @@ -935,7 +935,7 @@ through Max-Forwards header supplied with the request. This may be set to prevent infinite proxy loops, or a DoS attack.

    -

    Example

          ProxyMaxForwards 15
    +

    Example

    ProxyMaxForwards 15

    Note that setting ProxyMaxForwards is 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
    BalancerMember parameters
    @@ -1495,7 +1495,7 @@ ProxyPassReverse /mirror/foo/ https://backend.example.com/

    Suppose the local server has address http://example.com/; then

    -
          ProxyPassMatch ^(/.*\.gif)$ http://backend.example.com$1
    +
    ProxyPassMatch ^(/.*\.gif)$ http://backend.example.com$1

    will 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$1

    in 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/$1

    The ! directive is useful in situations where you don't want @@ -1644,7 +1644,7 @@ reverse proxy. This directive rewrites the path string in In the example given with ProxyPassReverse, the directive:

    -
          ProxyPassReverseCookiePath  /  /mirror/foo/
    +
    ProxyPassReverseCookiePath  /  /mirror/foo/

    will rewrite a cookie with backend path / (or @@ -1692,7 +1692,7 @@ connections to 0 to indicate that the system's default buffer size should be used.

    -

    Example

          ProxyReceiveBufferSize 2048
    +

    Example

    ProxyReceiveBufferSize 2048
    @@ -1817,10 +1817,10 @@ expressions </Proxy> -
            ProxySet balancer://foo lbmethod=bytraffic timeout=15
    +
    ProxySet balancer://foo lbmethod=bytraffic timeout=15
    -
            ProxySet ajp://backend:7001 timeout=15
    +
    ProxySet ajp://backend:7001 timeout=15

    Warning

    diff --git a/docs/manual/mod/mod_proxy.html.fr b/docs/manual/mod/mod_proxy.html.fr index 47366a331f..aa60fe7b0a 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 directives ProxyPass ou ProxyPassMatch lorsqu'on les utilise dans le cadre d'un mandataire inverse :

    -
              ProxyPass /example http://backend.example.com connectiontimeout=5 timeout=30
    +
    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 directive ProxySet,

    -
              ProxySet http://backend.example.com connectiontimeout=5 timeout=30
    +
    ProxySet http://backend.example.com connectiontimeout=5 timeout=30
    @@ -897,7 +897,7 @@ incorrectes d'une r

    Notez 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.com

    Notez qu'example suffirait aussi pour atteindre @@ -907,7 +907,7 @@ incorrectes d'une r

    Notez 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 15

    Notez 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).

    -

    Exemple

            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
    Paramètres de BalancerMember
    @@ -1696,7 +1696,7 @@ du serveur local en utilisant des expressions rationnelles

    Supposons que le serveur local a pour adresse http://example.com/ ; alors

    -
          ProxyPassMatch ^(/.*\.gif)$ http://backend.example.com$1
    +
    ProxyPassMatch ^(/.*\.gif)$ http://backend.example.com$1

    va 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$1

    dans 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/$1
    @@ -1866,7 +1866,7 @@ r

    Dans 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 FTP 0 pour indiquer que la taille de tampon par défaut du système doit être utilisée.

    -

    Exemple

          ProxyReceiveBufferSize 2048
    +

    Exemple

    ProxyReceiveBufferSize 2048
    @@ -2056,10 +2056,10 @@ charge </Proxy> -
            ProxySet balancer://foo lbmethod=bytraffic timeout=15
    +
    ProxySet balancer://foo lbmethod=bytraffic timeout=15
    -
            ProxySet ajp://backend:7001 timeout=15
    +
    ProxySet ajp://backend:7001 timeout=15

    Avertissement

    diff --git a/docs/manual/mod/mod_proxy_ajp.html.en b/docs/manual/mod/mod_proxy_ajp.html.en index b4697f5c30..38a1f97763 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 the ajp:// prefix:

    -

    Simple Reverse Proxy

        ProxyPass /app ajp://backend.example.com:8009/app
    +

    Simple Reverse Proxy

    ProxyPass /app ajp://backend.example.com:8009/app

    Balancers 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 56d9ab352b..7c556c1eeb 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_proxy and mod_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 ProxyPass directive, 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=on

    The balanced gateway needs mod_proxy_balancer and diff --git a/docs/manual/mod/mod_proxy_scgi.html.en b/docs/manual/mod/mod_proxy_scgi.html.en index 3dca9631bc..fb4266e0a4 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_proxy and mod_proxy_scgi.

    -

    Simple gateway

          ProxyPass /scgi-bin/ scgi://localhost:4000/
    +

    Simple gateway

    ProxyPass /scgi-bin/ scgi://localhost:4000/

    The balanced gateway needs mod_proxy_balancer and @@ -121,7 +121,7 @@ backend mod_cgi in this regard, except that you can turn off the feature.

    -

    Example

        ProxySCGIInternalRedirect Off
    +

    Example

    ProxySCGIInternalRedirect Off
    diff --git a/docs/manual/mod/mod_remoteip.html.en b/docs/manual/mod/mod_remoteip.html.en index 659daa314f..e917921824 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, mod_remoteip will trust all hosts presenting a RemoteIPHeader IP value.

    -

    Internal (Load Balancer) Example

            RemoteIPHeader X-Client-IP
    +

    Internal (Load Balancer) Example

    RemoteIPHeader X-Client-IP
    -

    Proxy Example

            RemoteIPHeader X-Forwarded-For
    +

    Proxy Example

    RemoteIPHeader X-Forwarded-For
    diff --git a/docs/manual/mod/mod_remoteip.html.fr b/docs/manual/mod/mod_remoteip.html.fr index e00e09d712..479488b57f 100644 --- a/docs/manual/mod/mod_remoteip.html.fr +++ b/docs/manual/mod/mod_remoteip.html.fr @@ -151,10 +151,10 @@ du client RemoteIPHeader comme hôte de confiance.

    Exemple à usage interne (répartiteur de - charge)

            RemoteIPHeader X-Client-IP
    + charge)
    RemoteIPHeader X-Client-IP
    -

    Exemple dans le cas d'un mandataire

            RemoteIPHeader X-Forwarded-For
    +

    Exemple dans le cas d'un mandataire

    RemoteIPHeader X-Forwarded-For
    diff --git a/docs/manual/mod/mod_reqtimeout.html.en b/docs/manual/mod/mod_reqtimeout.html.en index 53437a6a0d..d47fbedba8 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: -
              RequestReadTimeout header=10 body=30
    +
    RequestReadTimeout header=10 body=30
    @@ -60,7 +60,7 @@ the limit given indirectly by LimitRequestBody): -
              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=500
    diff --git a/docs/manual/mod/mod_rewrite.html.en b/docs/manual/mod/mod_rewrite.html.en index 644798809e..de1342b26b 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 than trace2 only 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}/*'"
    RewriteRule ^/images - [F]
    @@ -782,13 +782,13 @@ RewriteRule ^/$ /homepage.std.html [L]

    For example, you might define a RewriteMap as:

    -
          RewriteMap examplemap txt:/path/to/file/map.txt
    +
    RewriteMap examplemap txt:/path/to/file/map.txt

    You would then be able to use this map in a RewriteRule as 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 cf333acba2..70bcd877e0 100644 --- a/docs/manual/mod/mod_rewrite.html.fr +++ b/docs/manual/mod/mod_rewrite.html.fr @@ -93,7 +93,7 @@ r supérieur à trace2 qu'à des fins de débogage !

    -

    Exemple

          LogLevel alert rewrite:trace3
    +

    Exemple

    LogLevel alert rewrite:trace3

    RewriteLog

    @@ -682,7 +682,7 @@ la r non désiré.

    -
               RewriteCond expr "! %{HTTP_REFERER} -strmatch '*://%{HTTP_HOST}/*'"
    +
    RewriteCond expr "! %{HTTP_REFERER} -strmatch '*://%{HTTP_HOST}/*'"
    RewriteRule ^/images - [F]
    @@ -845,13 +845,13 @@ correspondance:source de la correspondance

    Par exemple, vous pouvez définir une directive RewriteMap comme suit

    -
          RewriteMap map-exemple txt:/chemin/vers/fichier/map.txt
    +
    RewriteMap map-exemple txt:/chemin/vers/fichier/map.txt

    Vous pourrez ensuite utiliser cette table dans une directive RewriteRule comme 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 fa8506af56..59d99b89bc 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 nss
    -

    NSS with certificate database

          SessionCryptoDriver nss dir=certs
    +

    NSS with certificate database

    SessionCryptoDriver nss dir=certs
    -

    NSS 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
    -

    NSS 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=secmod

    The 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.

    -

    NSS with certificate database

          SessionCryptoDriver nss noinit
    +

    NSS with certificate database

    SessionCryptoDriver nss noinit

    To 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.

    -

    OpenSSL with engine support

          SessionCryptoDriver openssl engine=name
    +

    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 f3e6ce177e..322b8f3b88 100644 --- a/docs/manual/mod/mod_setenvif.html.en +++ b/docs/manual/mod/mod_setenvif.html.en @@ -273,7 +273,7 @@ for additional examples. ap_expr. These expressions will be evaluated at runtime, and applied env-variable in the same fashion as SetEnvIf.

    -
        SetEnvIfExpr "tolower(req('X-Sendfile')) == 'd:\images\very_big.iso')" iso_delivered
    +
    SetEnvIfExpr "tolower(req('X-Sendfile')) == 'd:\images\very_big.iso')" iso_delivered

    This 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'" rfc1918

    See also

    @@ -312,7 +312,7 @@ without respect to case the SetEnvIf directive, 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=example

    This will cause the site environment variable diff --git a/docs/manual/mod/mod_setenvif.html.fr b/docs/manual/mod/mod_setenvif.html.fr index ac7bdb8909..70288ed194 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 directive SetEnvIf.

    -
        SetEnvIfExpr "tolower(req('X-Sendfile')) == 'd:\images\very_big.iso')" iso_delivered
    +
    SetEnvIfExpr "tolower(req('X-Sendfile')) == 'd:\images\very_big.iso')" iso_delivered

    Dans 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'" rfc1918

    Voir aussi

    @@ -325,7 +325,7 @@ attributs de la requ d'un point de vue sémantique à la directive SetEnvIf, 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=apache

    Cette 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 3e42d2157b..c0f76f6f20 100644 --- a/docs/manual/mod/mod_so.html.en +++ b/docs/manual/mod/mod_so.html.en @@ -181,7 +181,7 @@ of active modules module in 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.so

    loads 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 0cf37b02b3..e05dcc6d61 100644 --- a/docs/manual/mod/mod_so.html.fr +++ b/docs/manual/mod/mod_so.html.fr @@ -196,7 +196,7 @@ actifs module dans 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.so

    charge 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 cad25af326..e040983b1a 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 the SSLRequireSSL directive.

    -
          Require ssl
    +
    Require ssl
    @@ -305,7 +305,7 @@ string in
    mod_log_conf

    The 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-client
    Require valid-user
    diff --git a/docs/manual/mod/mod_suexec.html.en b/docs/manual/mod/mod_suexec.html.en index 1258322a54..656681c21e 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
    User directive.

    -

    Example

        SuexecUserGroup nobody nogroup
    +

    Example

    SuexecUserGroup nobody nogroup

    In 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 4d9b0cfb24..6c600498cd 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-group

    It 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 f9766b8ecb..8becc60c12 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 UserDir directories, but deny this to a few, use the following:

    -
          UserDir disabled user4 user5 user6
    +
    UserDir disabled user4 user5 user6

    It 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 c0bce00749..54436800af 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.com
    @@ -119,7 +119,7 @@ CustomLog logs/clickstream.log usertrack

    If this directive is not used, cookies last only for the current browser session.

    -
        CookieExpires "3 weeks"
    +
    CookieExpires "3 weeks"
    @@ -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 "-".

    -
        CookieName clicktrack
    +
    CookieName clicktrack
    @@ -179,7 +179,7 @@ CustomLog logs/clickstream.log usertrack three of these formats, with Cookie2 being the preferred format.

    -
        CookieStyle Cookie2
    +
    CookieStyle Cookie2
    @@ -202,7 +202,7 @@ CustomLog logs/clickstream.log usertrack mod_usertrack will not activate cookies.

    -
        CookieTracking on
    +
    CookieTracking on
    diff --git a/docs/manual/mod/mod_vhost_alias.html.en b/docs/manual/mod/mod_vhost_alias.html.en index 996083a906..2b5bebf0ed 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/%2

    A 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/%2

    The 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.com regardless 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.com as well as www.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.0

    A request for diff --git a/docs/manual/mod/mpm_common.html.en b/docs/manual/mod/mpm_common.html.en index 086b625c11..d9fe699683 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]:80

    The 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 https site on port 8443:

    -
          Listen 192.170.2.1:8443 https
    +
    Listen 192.170.2.1:8443 https

    Error condition

    @@ -428,7 +428,7 @@ of the daemon filename is not absolute then it is assumed to be relative to the DefaultRuntimeDir.

    -

    Example

          PidFile /var/run/apache.pid
    +

    Example

    PidFile /var/run/apache.pid

    It 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_status

    File-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 33dbb6cf2f..7c2f867ba4 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

    Information on creating @@ -603,10 +603,10 @@ RewriteRule (.*) ${lowercase:$1} [R,L] (Arcane and error prone procedures may work around the restriction on mapped drive letters, but this is not recommended.)

    -

    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 de84ba80ee..56356043c3 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/$2
    diff --git a/docs/manual/ssl/ssl_faq.html.en b/docs/manual/ssl/ssl_faq.html.en index 1c4b415d59..ddebddd338 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:80

    Other workaround solutions include:

    diff --git a/docs/manual/ssl/ssl_faq.html.fr b/docs/manual/ssl/ssl_faq.html.fr index c0d815b229..ff44711846 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:80

    il 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 cb4f996cc2..0993bfe49a 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:!MD5

    While 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 199d8469b7..b5aa9d0294 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:!MD5
    diff --git a/docs/manual/upgrading.html.en b/docs/manual/upgrading.html.en index 1a8acba263..3642e2a5c2 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 all
    -

    2.4 configuration:

            Require all denied
    +

    2.4 configuration:

    Require all denied

    In 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 granted

    In 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
    +

    2.4 configuration:

    Require host example.org
    diff --git a/docs/manual/upgrading.html.fr b/docs/manual/upgrading.html.fr index 85ee7de601..258e71a589 100644 --- a/docs/manual/upgrading.html.fr +++ b/docs/manual/upgrading.html.fr @@ -152,14 +152,14 @@ n

    version 2.2 :

    Order deny,allow
     Deny from all
    -

    version 2.4 :

            Require all denied
    +

    version 2.4 :

    Require all denied

    Dans 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 granted

    Dans 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
    +

    version 2.4 :

    Require host example.org
    diff --git a/docs/manual/urlmapping.html.en b/docs/manual/urlmapping.html.en index bc46837704..4fdc6064a9 100644 --- a/docs/manual/urlmapping.html.en +++ b/docs/manual/urlmapping.html.en @@ -129,7 +129,7 @@ expression based matching and substitution. For example,

    -
        ScriptAliasMatch ^/~([a-zA-Z0-9]+)/cgi-bin/(.+)   /home/$1/cgi-bin/$2
    +
    ScriptAliasMatch ^/~([a-zA-Z0-9]+)/cgi-bin/(.+)   /home/$1/cgi-bin/$2

    will map a request to @@ -176,7 +176,7 @@ /home/user/public_html/file.html, use the following AliasMatch directive:

    -
        AliasMatch ^/upages/([a-zA-Z0-9]+)(/(.*))?$   /home/$1/public_html/$3
    +
    AliasMatch ^/upages/([a-zA-Z0-9]+)(/(.*))?$   /home/$1/public_html/$3
    top
    @@ -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.html

    Alternatively, 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.html
    top
    diff --git a/docs/manual/urlmapping.html.fr b/docs/manual/urlmapping.html.fr index 230729158f..3cdf217809 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/$2

    fera correspondre une requête du style @@ -190,7 +190,7 @@ l'arborescence DocumentRoot /home/user/public_html/file.html, utilisez la directive AliasMatch suivante :

    -
        AliasMatch ^/upages/([a-zA-Z0-9]+)(/(.*))?$   /home/$1/public_html/$3
    +
    AliasMatch ^/upages/([a-zA-Z0-9]+)(/(.*))?$   /home/$1/public_html/$3
    top
    @@ -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.html

    De 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.html
    top
    diff --git a/docs/manual/vhosts/ip-based.html.en b/docs/manual/vhosts/ip-based.html.en index 2029db3752..52f5008a32 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:80

    It 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 27fe005a1c..15a7dddb38 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:80

    Il 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 58ee8098f7..fd74e98ac8 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.com

    then requests for all hosts in the example.com domain will diff --git a/docs/manual/vhosts/name-based.html.fr b/docs/manual/vhosts/name-based.html.fr index 705b463253..73db3e3a3c 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.com

    ainsi, toutes les requêtes portant sur un domaine