]> granicus.if.org Git - apache/commitdiff
Introducing 6 .fr translations
authorVincent Deffontaines <gryzor@apache.org>
Mon, 18 Dec 2017 19:14:04 +0000 (19:14 +0000)
committerVincent Deffontaines <gryzor@apache.org>
Mon, 18 Dec 2017 19:14:04 +0000 (19:14 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1818612 13f79535-47bb-0310-9956-ffa450edef68

12 files changed:
docs/manual/programs/ctlogconfig.xml.fr [new file with mode: 0644]
docs/manual/programs/ctlogconfig.xml.meta
docs/manual/programs/firehose.xml.fr [new file with mode: 0644]
docs/manual/programs/firehose.xml.meta
docs/manual/programs/log_server_status.xml.fr [new file with mode: 0644]
docs/manual/programs/log_server_status.xml.meta
docs/manual/programs/other.xml.fr [new file with mode: 0644]
docs/manual/programs/other.xml.meta
docs/manual/programs/split-logfile.xml.fr [new file with mode: 0644]
docs/manual/programs/split-logfile.xml.meta
docs/manual/programs/suexec.xml.fr [new file with mode: 0644]
docs/manual/programs/suexec.xml.meta

diff --git a/docs/manual/programs/ctlogconfig.xml.fr b/docs/manual/programs/ctlogconfig.xml.fr
new file mode 100644 (file)
index 0000000..8278aa8
--- /dev/null
@@ -0,0 +1,230 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
+<?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
+<!-- English Revision : 1592205 -->
+<!-- French translation : Lucien GENTIS -->
+<!-- Reviewed by : Vincent Deffontaines -->
+
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<manualpage metafile="ctlogconfig.xml.meta">
+<parentdocument href="./">Programs</parentdocument>
+
+<title>ctlogconfig, l'utilitaire de configuration du service de
+transparence des certificats</title>
+
+<summary>
+    <p><code>ctlogconfig</code> est un utilitaire permettant de cr&eacute;er et
+    maintenir une base de donn&eacute;es pour la configuration du service de
+    transparence des certificats utilisable par le module
+    <module>mod_ssl_ct</module> ; nous nous r&eacute;f&eacute;rerons &agrave; ce service
+    sous le terme "log" dans la suite de cette documentation.</p>
+
+    <p>Avant d'aller plus loin, et si ce n'est d&eacute;j&agrave; fait, veuillez
+    consulter le document <a
+    href="../mod/mod_ssl_ct.html#logconf">Configuration des logs</a>
+    dans la documentation du module <module>mod_ssl_ct</module>.</p>
+
+    <p>Vous pouvez vous inspirer des <a href="#examples">exemples
+    ci-dessous</a> pour une utilisation typique.</p>
+
+</summary>
+<seealso><module>mod_ssl_ct</module></seealso>
+
+<section id="synopsis">
+  <title>Exemples et d&eacute;finitions</title>
+  <p><code>
+    <strong>ctlogconfig</strong> <em>/path/to/db</em> <strong>dump</strong>
+  </code></p>
+
+  <p><code>
+    <strong>ctlogconfig</strong> <em>/path/to/db</em> <strong>configure-public-key</strong>
+    [ <em>log-id</em>|<em>record-id</em> ]
+    <em>/path/to/public-key.pem</em>
+  </code></p>
+
+  <p><code>
+    <strong>ctlogconfig</strong> <em>/path/to/db</em> <strong>configure-url</strong>
+    [ <em>log-id</em>|<em>record-id</em> ]
+    <em>log-URL</em>
+  </code></p>
+
+  <p><code>
+    <strong>ctlogconfig</strong> <em>/path/to/db</em> <strong>valid-time-range</strong>
+    <em>log-id</em>|<em>record-id</em>
+    <em>min-timestamp</em> <em>max-timestamp</em>
+  </code></p>
+
+  <p><code>
+    <strong>ctlogconfig</strong> <em>/path/to/db</em> <strong>trust</strong>
+    <em>log-id</em>|<em>record-id</em>
+  </code></p>
+
+  <p><code>
+    <strong>ctlogconfig</strong> <em>/path/to/db</em> <strong>distrust</strong>
+    <em>log-id</em>|<em>record-id</em>
+  </code></p>
+
+  <p><code>
+    <strong>ctlogconfig</strong> <em>/path/to/db</em> <strong>forget</strong>
+    <em>log-id</em>|<em>record-id</em>
+  </code></p>
+
+  <dl>
+    <dt><em>log-id</em></dt>
+    <dd>Il s'agit de l'identifiant du log qui est g&eacute;n&eacute;r&eacute; en effectuant
+    un hash SHA-256 au format hexad&eacute;cimal de la cl&eacute; publique du log.
+    La taille de cette cha&icirc;ne est de 64 caract&egrave;res. </dd>
+
+    <dt><em>record-id</em></dt>
+    <dd>Il s'agit du num&eacute;ro d'enregistrement dans la base de donn&eacute;es,
+    tel qu'il s'affiche avec la sous-commande <strong>dump</strong>,
+    pr&eacute;fix&eacute; par le caract&egrave;re <strong>#</strong>. Par exemple,
+    <strong>#4</strong> renvoie au quatri&egrave;me enregistrement de la base
+    de donn&eacute;es (utilisez le m&eacute;canisme d'&eacute;chappement du shell si
+    n&eacute;cessaire).</dd>
+
+    <dt><em>/path/to/public-key.pem</em></dt>
+    <dd>Il s'agit du chemin vers le fichier contenant la cl&eacute; publique du
+    log au format PEM. En effet, la cl&eacute; publique n'est pas stock&eacute;e dans la base de
+    donn&eacute;es, et le fichier ne peut donc pas &ecirc;tre supprim&eacute; jusqu'&agrave; ce que
+    la donn&eacute;e qui y fait r&eacute;f&eacute;rence dans la base de donn&eacute;es soit
+    supprim&eacute;e ou modifi&eacute;e.</dd>
+
+    <dt><em>min-timestamp</em>, <em>max-timestamp</em></dt>
+    <dd>Un rep&egrave;re de temps (timestamp) est un temps exprim&eacute; en
+    millisecondes depuis le temps epoch, sans tenir compte des secondes
+    saut&eacute;es. C'est le format de temps utilis&eacute; dans les SCTs. Le rep&egrave;re
+    de temps doit &ecirc;tre fourni sous la forme d'un nombre d&eacute;cimal.
+    <br />
+    Sp&eacute;cifiez <strong><code>-</code></strong> pour un des rep&egrave;res de
+    temps s'il n'est pas connu. Par exemple, lorsque vous d&eacute;finissez le
+    rep&egrave;re de temps minimum valide pour un log qui reste valide,
+    sp&eacute;cifiez <strong><code>-</code></strong> pour
+    <em>max-timestamp</em>.
+    <br />
+    Les SCTs re&ccedil;u par le mandataire depuis ce log seront invalides si le
+    rep&egrave;re de temps est plus ancien que <em>min-timestamp</em> ou plus
+    r&eacute;cent que <em>max-timestamp</em>.</dd>
+
+  </dl>
+
+</section>
+
+<section id="subcommands">
+  <title>Commandes</title>
+  <dl>
+    <dt>dump</dt>
+    <dd>Affiche les &eacute;l&eacute;ments de configuration de la base de donn&eacute;es.
+    L'identifiant des enregistrements que cette commande affiche peut
+    servir de r&eacute;f&eacute;rence pour les enregistrements devant &ecirc;tre affect&eacute;s
+    par les autres commandes.</dd>
+
+    <dt>configure-public-key</dt>
+    <dd>Ajoute une cl&eacute; publique pour un log de la base de donn&eacute;es ou
+    modifie la cl&eacute; publique d'un log existant. La cl&eacute; publique d'un log
+    permet de valider la signature des SCTs (Signed certificate
+    Timestamp) re&ccedil;us par un mandataire depuis un serveur d'arri&egrave;re-plan
+    (La base de donn&eacute;es sera cr&eacute;&eacute;e si elle n'existe pas encore).</dd>
+
+    <dt>configure-url</dt>
+    <dd>Ajoute une URL pour un log de la base de donn&eacute;es ou modifie
+    l'URL d'un log existant. L'URL d'un log permet de soumettre des
+    certificats de serveur &agrave; ce dernier afin d'obtenir des SCTs qui
+    pourront &ecirc;tre envoy&eacute;s aux clients (La base de donn&eacute;es sera cr&eacute;&eacute;e si
+    elle n'existe pas encore).</dd>
+
+    <dt>valid-time-range</dt>
+    <dd>Cette commande permet de d&eacute;finir le temps de validation minimum
+    et/ou maximum pour un log. Les SCTs en provenance du log poss&eacute;dant
+    un rep&egrave;re de temps en dehors de la plage d&eacute;finie seront rejet&eacute;s.
+    Utilisez <code>-</code> pour un temps non d&eacute;fini (La base de donn&eacute;es
+    sera cr&eacute;&eacute;e si elle n'existe pas encore).</dd>
+
+    <dt>trust</dt>
+    <dd>Marque un log comme digne de confiance, ce qui est la situation
+    par d&eacute;faut. Cette command permet de marquer un log comme digne de
+    confiance, alors que ce n'&eacute;tait pas le cas auparavant (La base de
+    donn&eacute;es sera cr&eacute;&eacute;e si elle n'existe pas encore).</dd>
+
+    <dt>distrust</dt>
+    <dd>Marque un log comme non digne de confiance (La base de
+    donn&eacute;es sera cr&eacute;&eacute;e si elle n'existe pas encore).</dd>
+
+    <dt>forget</dt>
+    <dd>Supprime de la base de donn&eacute;es les informations relatives
+    &agrave; un log.</dd>
+  </dl>
+</section>
+
+<section id="examples">
+  <title>Exemples</title>
+
+  <p>Soit une instance de httpd Apache qui fonctionne en tant que
+  serveur TLS et mandataire. Le serveur TLS doit obtenir des SCTs de la
+  part de certains logs connus afin de pouvoir les transmettre aux
+  clients, et le mandataire doit pouvoir valider la signature des SCTs
+  en provenance des serveurs d'arri&egrave;re-plan.</p>
+
+  <p>Nous allons tout d'abord d&eacute;finir les URLs des logs o&ugrave; les
+  certificats sont enregistr&eacute;s :</p>
+
+  <example>
+    $ ctlogconfig /path/to/conf/log-config configure-url http://log1.example.com/<br />
+    $ ctlogconfig /path/to/conf/log-config configure-url http://log2.example.com/<br />
+    $ ctlogconfig /path/to/conf/log-config dump<br />
+    Log entry:<br />
+      Record 1<br />
+      Log id         : (not configured)<br />
+      Public key file: (not configured)<br />
+      URL            : http://log1.example.com/<br />
+      Time range     : -INF to +INF<br />
+<br />
+    Log entry:<br />
+      Record 2<br />
+      Log id         : (not configured)<br />
+      Public key file: (not configured)<br />
+      URL            : http://log2.example.com/<br />
+      Time range     : -INF to +INF<br />
+  </example>
+
+  <p>Nous pouvons maintenant attribuer une cl&eacute; publique &agrave; un log o&ugrave; le
+  certificat de notre seul serveur d'arri&egrave;re-plan est publi&eacute;. Dans notre
+  cas, il s'agit du log dont l'URL est http://log2.example.com/, et qui
+  a d&eacute;j&agrave; &eacute;t&eacute; configur&eacute;.</p>
+
+  <example>
+    $ ctlogconfig /path/to/conf/log-config configure-public-key \#2 /path/to/conf/log2-pub.pem<br />
+    $ ctlogconfig /path/to/conf/log-config dump<br />
+    Log entry:<br />
+      Record 1<br />
+      Log id         : (not configured)<br />
+      Public key file: (not configured)<br />
+      URL            : http://log1.example.com/<br />
+      Time range     : -INF to +INF<br />
+<br />
+    Log entry:<br />
+      Record 2<br />
+      Log id         : (not configured)<br />
+      Public key file: /path/to/conf/log2-pub.pem<br />
+      URL            : http://log2.example.com/<br />
+      Time range     : -INF to +INF<br />
+  </example>
+</section>
+
+</manualpage>
index 8f42c05811c307fb6d7d952b6cd49b174bbe2860..d31f4734c63d0678bc71fe2ad4469847050a479d 100644 (file)
@@ -8,5 +8,6 @@
 
   <variants>
     <variant>en</variant>
+    <variant>fr</variant>
   </variants>
 </metafile>
diff --git a/docs/manual/programs/firehose.xml.fr b/docs/manual/programs/firehose.xml.fr
new file mode 100644 (file)
index 0000000..a63a50d
--- /dev/null
@@ -0,0 +1,82 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
+<?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
+<!-- English Revision : 1242907 -->
+<!-- French translation : Lucien GENTIS -->
+<!-- Reviewed by : Vincent Deffontaines -->
+
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<manualpage metafile="firehose.xml.meta">
+<parentdocument href="./">Programs</parentdocument>
+
+<title>firehose - D&eacute;multiplexe un flux firehose</title>
+
+<summary>
+    <p><code>firehose</code> d&eacute;multiplexe le flux de connexions
+    multiplex&eacute;es donn&eacute;, et enregistre chacune d'entre elles dans un
+    fichier individuel.</p>
+
+    <p>Lors de son enregistrement, chaque connexion est plac&eacute;e dans un
+    fichier d&eacute;di&eacute; dont le nom est g&eacute;n&eacute;r&eacute; &agrave; partir de l'UUID de la
+    connexion dans le flux. Si le flux comporte des requ&ecirc;tes et des
+    r&eacute;ponses, ces derni&egrave;res feront l'objet de fichiers s&eacute;par&eacute;s.</p>
+
+    <p>Si le param&egrave;tre optionnel prefix est sp&eacute;cifi&eacute;, les connexions qui
+    commencent par le pr&eacute;fixe donn&eacute; seront incluses. Le pr&eacute;fixe doit
+    correspondre exactement au premier fragment pour un r&eacute;sultat de
+    comparaison positif.</p>
+
+</summary>
+<seealso><module>mod_firehose</module></seealso>
+
+<section id="synopsis"><title>Syntaxe</title>
+    <p><code><strong>firehose</strong>
+    [ -<strong>f</strong> <var>entr&eacute;e</var> ]
+    [ -<strong>o</strong> <var>r&eacute;pertoire-sortie</var> ]
+    [ -<strong>u</strong> <var>uuid</var> ]
+    [ -<strong>h</strong> ]
+    [ --<strong>version</strong> ]
+    [<var>pr&eacute;fixe1</var> [...]]</code></p>
+
+</section>
+
+<section id="options"><title>Options</title>
+    <dl>
+    <dt><code>--file, -f <var>nom-fichier</var></code></dt>
+    <dd>Fichier depuis lequel doit &ecirc;tre lu le flux firehose. La valeur
+    par d&eacute;faut est stdin.</dd>
+
+    <dt><code>--output-directory, -o </code> <var>r&eacute;pertoire-sortie</var></dt>
+    <dd>R&eacute;pertoire dans lequel les connexions d&eacute;multiplex&eacute;es doivent
+    &ecirc;tre enregistr&eacute;es.</dd>
+
+    <dt><code>--uuid, -u</code> <var>uuid</var></dt>
+    <dd>L'UUID de la connexion &agrave; d&eacute;multiplexer. Plusieurs UUID peuvent
+    &ecirc;tre sp&eacute;cifi&eacute;s. Par d&eacute;faut, tout les UUID seront d&eacute;multiplex&eacute;s.</dd>
+
+    <dt><code>--help, -h</code></dt>
+    <dd>Ce texte d'aide.</dd>
+
+    <dt><code>--version</code></dt>
+    <dd>Affiche la version du programme.</dd>
+    </dl>
+
+</section>
+
+</manualpage>
index 7567aca9f469cda7cd1638daf0157353e4c8383d..05c8ec6f09111b8d0dfb3ebef551b162a8eb78a5 100644 (file)
@@ -8,5 +8,6 @@
 
   <variants>
     <variant>en</variant>
+    <variant>fr</variant>
   </variants>
 </metafile>
diff --git a/docs/manual/programs/log_server_status.xml.fr b/docs/manual/programs/log_server_status.xml.fr
new file mode 100644 (file)
index 0000000..6028d01
--- /dev/null
@@ -0,0 +1,64 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
+<?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
+<!-- English Revision : 1562300 -->
+<!-- French translation : Lucien GENTIS -->
+<!-- Reviewed by : Vincent Deffontaines -->
+
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<manualpage metafile="log_server_status.xml.meta">
+<parentdocument href="./">Programs</parentdocument>
+
+<title>log_server_status - Enregistrement p&eacute;riodique de l'&eacute;tat du serveur</title>
+
+<summary>
+    <p>Ce script perl a &eacute;t&eacute; con&ccedil;u pour &ecirc;tre ex&eacute;cut&eacute; &agrave; intervalles
+    r&eacute;guliers via un d&eacute;clencheur de type cron. Il se connecte au serveur
+    pour en extraire des informations quant &agrave; son &eacute;tat. Il formate ces
+    informations sous la forme d'une seule ligne qu'il enregistre dans
+    un fichier. Vous devez &eacute;diter la valeur des variables en t&ecirc;te de
+    script afin de d&eacute;finir le chemin du fichier de sortie. Pour que ce
+    script puisse fonctionner, <module>mod_status</module> doit au
+    pr&eacute;alable &ecirc;tre charg&eacute; et configur&eacute;.</p>
+</summary>
+
+<section id="configure"><title>Mode d'emploi</title>
+
+<p>Le script contient les sections suivantes :</p>
+
+<highlight language="perl">
+my $wherelog = "/usr/local/apache2/logs/";  # Le fichier de sortie sera
+                                       # du style "/usr/local/apache2/logs/19960312"
+my $server   = "localhost";        # Nom du serveur, par exemple "www.foo.com"
+my $port     = "80";               # Port d'&eacute;coute du serveur
+my $request = "/server-status/?auto";    # Requ&ecirc;te &agrave; soumettre
+</highlight>
+
+<p>Ces variables doivent contenir des valeurs correctes, et le
+gestionnaire <code>/server-status</code> doit &ecirc;tre configur&eacute; pour le
+r&eacute;pertoire consid&eacute;r&eacute;. En outre, l'utilisateur qui ex&eacute;cute le script doit
+avoir les droits d'&eacute;criture sur le chemin du fichier de sortie.</p>
+
+<p>L'ex&eacute;cution p&eacute;riodique du script via cron permet d'obtenir un jeu de
+rapports d'&eacute;tat qui pourra &ecirc;tre utilis&eacute; &agrave; des fins d'analyse
+statistique.</p>
+
+</section>
+
+</manualpage>
index 4ad2755872ac5b7f2c09e3ebcefdd007704bf6f8..b13d52e4380ae426896148ba1160918622863dc6 100644 (file)
@@ -8,5 +8,6 @@
 
   <variants>
     <variant>en</variant>
+    <variant>fr</variant>
   </variants>
 </metafile>
diff --git a/docs/manual/programs/other.xml.fr b/docs/manual/programs/other.xml.fr
new file mode 100644 (file)
index 0000000..8de69d8
--- /dev/null
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
+<?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
+<!-- English Revision : 1332686 -->
+<!-- French translation : Lucien GENTIS -->
+<!-- Reviewed by : Vincent Deffontaines $ -->
+
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<manualpage metafile="other.xml.meta">
+<parentdocument href="./">Programmes</parentdocument>
+
+<title>Autres programmes</title>
+
+<summary>
+
+    <p>Cette page contenait la documentation de programmes qui poss&egrave;dent
+    maintenant leurs propres pages de documentation. Merci de bien
+    vouloir mettre &agrave; jour vos liens.</p>
+
+    <p><program>log_server_status</program></p>
+    <p><program>split-logfile</program></p>
+</summary>
+
+</manualpage>
index 8e637629acc9f79bd2af97249ea17797e4ff27fc..0dc5357c2f6526f196fb540a957c2ac23da4f1df 100644 (file)
@@ -8,6 +8,7 @@
 
   <variants>
     <variant>en</variant>
+    <variant>fr</variant>
     <variant outdated="yes">ko</variant>
     <variant outdated="yes">tr</variant>
   </variants>
diff --git a/docs/manual/programs/split-logfile.xml.fr b/docs/manual/programs/split-logfile.xml.fr
new file mode 100644 (file)
index 0000000..7fc7bac
--- /dev/null
@@ -0,0 +1,68 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
+<?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
+<!-- English Revision : 1674195 -->
+<!-- French translation : Lucien GENTIS -->
+<!-- Reviewed by : Vincent Deffontaines -->
+
+
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<manualpage metafile="split-logfile.xml.meta">
+<parentdocument href="./">Programs</parentdocument>
+
+<title>split-logfile - Eclatement des journaux en fonction des serveurs
+virtuels</title>
+
+<summary>
+    <p>Ce script perl permet d'extraire un journal pour chaque serveur
+    virtuel &agrave; partir d'un journal d'acc&egrave;s global du serveur web. Pour
+    que ce script fonctionne, le premier champ de chaque ligne du
+    journal global doit contenir l'identit&eacute; du serveur virtuel ; ce
+    champ aura &eacute;t&eacute; ajout&eacute; &agrave; la directive <directive
+    module="mod_log_config">LogFormat</directive> via la variable
+    "<code>%v</code>".
+    </p>
+</summary>
+
+<section id="split-logfile"><title>Mode d'emploi</title>
+
+    <p>Cr&eacute;ation d'un fichier journal comportant l'identit&eacute; du serveur
+    virtuel consid&eacute;r&eacute; :</p>
+
+    <highlight language="config">
+LogFormat "%v %h %l %u %t \"%r\" %&gt;s %b \"%{Referer}i\" \"%{User-agent}i\"" combined_plus_vhost
+CustomLog "logs/access_log" combined_plus_vhost
+    </highlight>
+
+    <p>Un fichier journal sera cr&eacute;&eacute; dans le r&eacute;pertoire &agrave; partir duquel
+    vous ex&eacute;cutez le script pour chaque serveur virtuel qui appara&icirc;t
+    dans le journal global. Ces fichiers journaux seront nomm&eacute;s &agrave; partir
+    du nom du serveur virtuel consid&eacute;r&eacute;, avec l'extension
+    <code>.log</code>.</p>
+
+    <p>Le fichier journal global est lu depuis l'entr&eacute;e standard stdin.
+    Les entr&eacute;es de ce journal sont alors ajout&eacute;es au journal du serveur
+    virtuel correspondant.</p>
+
+    <example>split-logfile &lt; access_log</example>
+
+
+</section>
+
+</manualpage>
index 21514060e7ba9641b632b0019ea73002dab8351a..32e2b3d50f03fd7339ee6ebc33f1e75c0d41e39d 100644 (file)
@@ -8,5 +8,6 @@
 
   <variants>
     <variant>en</variant>
+    <variant>fr</variant>
   </variants>
 </metafile>
diff --git a/docs/manual/programs/suexec.xml.fr b/docs/manual/programs/suexec.xml.fr
new file mode 100644 (file)
index 0000000..b54c636
--- /dev/null
@@ -0,0 +1,64 @@
+<?xml version="1.0" encoding="ISO-8859-1" ?>
+<!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
+<?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
+<!-- English Revision : 1498310 -->
+<!-- French translation : Lucien GENTIS -->
+<!-- Reviewed by : Vincent Deffontaines -->
+
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one or more
+ contributor license agreements.  See the NOTICE file distributed with
+ this work for additional information regarding copyright ownership.
+ The ASF licenses this file to You under the Apache License, Version 2.0
+ (the "License"); you may not use this file except in compliance with
+ the License.  You may obtain a copy of the License at
+
+     http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
+<manualpage metafile="suexec.xml.meta">
+<parentdocument href="./">Programs</parentdocument>
+
+<title>suexec - Change d'utilisateur avant l'ex&eacute;cution d'un programme
+externe</title>
+
+<summary>
+     <p><code>suexec</code> permet au serveur HTTP Apache de changer
+     d'utilisateur avant d'ex&eacute;cuter un programme CGI. Pour ce faire, il
+     doit &ecirc;tre ex&eacute;cut&eacute; par <code>root</code>. A cet effet, comme le
+     d&eacute;mon HTTP ne s'ex&eacute;cute en g&eacute;n&eacute;ral pas en tant que
+     <code>root</code>, l'ex&eacute;cutable <code>suexec</code> doit poss&eacute;der
+     le bit setuid et avoir comme propri&eacute;taire <code>root</code>. Seul
+     <code>root</code> doit en poss&eacute;der les droits en &eacute;criture.</p>
+
+     <p>Pour plus d'informations &agrave; propos des concepts et du mod&egrave;le de
+     s&eacute;curit&eacute; du programme suexec, veuillez vous reporter &agrave; sa
+     documentation : <a
+     href="http://httpd.apache.org/docs/&httpd.docs;/suexec.html"
+     >http://httpd.apache.org/docs/&httpd.docs;/suexec.html</a>.</p>
+</summary>
+
+<section id="synopsis"><title>Synopsis</title>
+     <p><code><strong>suexec</strong> -<strong>V</strong></code></p>
+</section>
+
+<section id="options"><title>Options</title>
+
+<dl>
+<dt><code>-V</code></dt>
+
+<dd>Si vous &ecirc;tes <code>root</code>, cette option permet d'afficher les
+options de compilation du programme <code>suexec</code>. Pour des
+raisons de s&eacute;curit&eacute;, toutes les options de configuration ne sont
+modifiables qu'&agrave; la compilation.</dd>
+
+</dl>
+</section>
+
+</manualpage>
index 1e99356f1e8452517b4dc9efdfc0a0d064171670..fa929ef34e9f270e1c0e871f18d9aeafb0529a99 100644 (file)
@@ -8,6 +8,7 @@
 
   <variants>
     <variant>en</variant>
+    <variant>fr</variant>
     <variant outdated="yes">ko</variant>
     <variant outdated="yes">tr</variant>
   </variants>