summaryrefslogtreecommitdiffstats
path: root/docs/manual/mod/mod_proxy_uwsgi.xml.fr
diff options
context:
space:
mode:
authorLucien Gentis <lgentis@apache.org>2019-10-21 13:01:21 +0200
committerLucien Gentis <lgentis@apache.org>2019-10-21 13:01:21 +0200
commita4c56d3c5e26f3930682bf826541994fd8858701 (patch)
tree3b75d4e5c8dc04be18e15734301fb10f704fdf6e /docs/manual/mod/mod_proxy_uwsgi.xml.fr
parentUse native EOL for intended-duplicates. (diff)
downloadapache2-a4c56d3c5e26f3930682bf826541994fd8858701.tar.xz
apache2-a4c56d3c5e26f3930682bf826541994fd8858701.zip
fr doc adding a new translated file.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1868694 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_proxy_uwsgi.xml.fr')
-rw-r--r--docs/manual/mod/mod_proxy_uwsgi.xml.fr84
1 files changed, 84 insertions, 0 deletions
diff --git a/docs/manual/mod/mod_proxy_uwsgi.xml.fr b/docs/manual/mod/mod_proxy_uwsgi.xml.fr
new file mode 100644
index 0000000000..5ef1bbbb5c
--- /dev/null
+++ b/docs/manual/mod/mod_proxy_uwsgi.xml.fr
@@ -0,0 +1,84 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
+<?xml-stylesheet type="text/xsl" href="../style/manual.fr.xsl"?>
+<!-- $LastChangedRevision: 2018081701 $ -->
+<!-- French translation : Lucien GENTIS -->
+<!-- English Revision: 1811163 -->
+
+<!--
+ 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.
+-->
+
+<modulesynopsis metafile="mod_proxy_uwsgi.xml.meta">
+
+<name>mod_proxy_uwsgi</name>
+<description>Module de passerelle UWSGI pour <module>mod_proxy</module></description>
+<status>Extension</status>
+<sourcefile>mod_proxy_uwsgi.c</sourcefile>
+<identifier>proxy_uwsgi_module</identifier>
+
+<summary>
+ <p>Pour pouvoir fonctionner, ce module requiert le chargement préalable de
+ <module>mod_proxy</module>. Il fournit le support du <a
+ >href="http://uwsgi-docs.readthedocs.io/en/latest/index.html">protocole
+ UWSGI</a>.</p>
+
+ <p>Pour être en mesure de gérer le protocole UWSGI, le serveur doit donc
+ pouvoir charger des modules <module>mod_proxy</module> et
+ <module>mod_proxy_uwsgi</module>.</p>
+
+ <note type="warning"><title>Avertissement</title>
+ <p>N'activez le mandatement que si vous avez <a
+ href="mod_proxy.html#access">sécurisé votre serveur</a>. Les serveurs
+ mandataires ouverts sont dangereux pour votre réseau, mais aussi pour
+ Internet en général.</p>
+ </note>
+</summary>
+
+<seealso><module>mod_proxy</module></seealso>
+<seealso><module>mod_proxy_balancer</module></seealso>
+
+<section id="examples"><title>Exemples</title>
+ <p>Il est rappelé que vous devez charger les modules
+ <module>mod_proxy</module> et <module>mod_proxy_uwsgi</module> pour que les
+ exemples suivants fonctionnent.</p>
+
+ <example><title>Passerelle simple</title>
+ <highlight language="config">
+ProxyPass "/uwsgi-bin/" "uwsgi://localhost:4000/"
+ </highlight>
+ </example>
+
+ <p>La passerelle à répartition de charge nécessite
+ <module>mod_proxy_balancer</module> et au moins un module implémentant un
+ algorithme de répartition de charge comme
+ <module>mod_lbmethod_byrequests</module>, en plus des modules de mandatement
+ listés ci-dessus. Par défaut, c'est <module>mod_lbmethod_byrequests</module>
+ qui sera utilisé, et c'est donc ce dernier qui sera utilisé dans l'exemple
+ suivant :</p>
+
+ <example><title>Passerelle à répartition de charge</title>
+ <highlight language="config">
+ProxyPass "/uwsgi-bin/" "balancer://somecluster/"
+&lt;Proxy balancer://somecluster&gt;
+ BalancerMember uwsgi://localhost:4000
+ BalancerMember uwsgi://localhost:4001
+&lt;/Proxy&gt;
+ </highlight>
+ </example>
+</section>
+
+</modulesynopsis>