diff options
author | Daniel Gruno <humbedooh@apache.org> | 2012-05-20 15:02:48 +0200 |
---|---|---|
committer | Daniel Gruno <humbedooh@apache.org> | 2012-05-20 15:02:48 +0200 |
commit | aeff28fc12a1539222a49a606c47f6293c1cd5e8 (patch) | |
tree | dbcb59cb9c20893c1e7ad8901e9ddc89a085b321 /docs/manual/vhosts/ip-based.html.fr | |
parent | Let's see if this works on-site. (diff) | |
download | apache2-aeff28fc12a1539222a49a606c47f6293c1cd5e8.tar.xz apache2-aeff28fc12a1539222a49a606c47f6293c1cd5e8.zip |
rebuild
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1340707 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/vhosts/ip-based.html.fr')
-rw-r--r-- | docs/manual/vhosts/ip-based.html.fr | 47 |
1 files changed, 24 insertions, 23 deletions
diff --git a/docs/manual/vhosts/ip-based.html.fr b/docs/manual/vhosts/ip-based.html.fr index 952f90169f..13e11045d8 100644 --- a/docs/manual/vhosts/ip-based.html.fr +++ b/docs/manual/vhosts/ip-based.html.fr @@ -27,8 +27,6 @@ <a href="../ko/vhosts/ip-based.html" hreflang="ko" rel="alternate" title="Korean"> ko </a> | <a href="../tr/vhosts/ip-based.html" hreflang="tr" rel="alternate" title="Türkçe"> tr </a></p> </div> -<div class="outofdate">Cette traduction peut être périmée. Vérifiez la version - anglaise pour les changements récents.</div> </div> <div id="quickview"><ul id="toc"><li><img alt="" src="../images/down.gif" /> <a href="#requirements">Système requis</a></li> <li><img alt="" src="../images/down.gif" /> <a href="#howto">Comment configurer Apache</a></li> @@ -112,9 +110,10 @@ résident pour des serveurs virtuels</a></li> de configuration pour définir l'adresse IP (ou serveur virtuel) que le processus résident doit gérer. Par exemple :</p> - <div class="example"><p><code> + <pre class="prettyprint lang-config"> Listen 192.0.2.100:80 - </code></p></div> + </pre> + <p>Il est recommandé d'utiliser une adresse IP plutôt qu'un nom de domaine (consultez <a href="../dns-caveats.html">Problèmes DNS @@ -138,23 +137,24 @@ résident pour des serveurs virtuels</a></h2> <code class="directive"><a href="../mod/mod_log_config.html#customlog">CustomLog</a></code> avec des valeurs différentes pour chaque serveur virtuel. Par exemple :</p> - <div class="example"><p><code> - <VirtualHost 172.20.30.40:80><br /> - ServerAdmin webmaster@www1.example.com<br /> - DocumentRoot /www/vhosts/www1<br /> - ServerName www1.example.com<br /> - ErrorLog /www/logs/www1/error_log<br /> - CustomLog /www/logs/www1/access_log combined<br /> - </VirtualHost><br /> - <br /> - <VirtualHost 172.20.30.50:80><br /> - ServerAdmin webmaster@www2.example.org<br /> - DocumentRoot /www/vhosts/www2<br /> - ServerName www2.example.org<br /> - ErrorLog /www/logs/www2/error_log<br /> - CustomLog /www/logs/www2/access_log combined<br /> - </VirtualHost> - </code></p></div> + <pre class="prettyprint lang-config"> +<VirtualHost 172.20.30.40:80> + ServerAdmin webmaster@www1.example.com + DocumentRoot /www/vhosts/www1 + ServerName www1.example.com + ErrorLog /www/logs/www1/error_log + CustomLog /www/logs/www1/access_log combined +</VirtualHost> + +<VirtualHost 172.20.30.50:80> + ServerAdmin webmaster@www2.example.org + DocumentRoot /www/vhosts/www2 + ServerName www2.example.org + ErrorLog /www/logs/www2/error_log + CustomLog /www/logs/www2/access_log combined +</VirtualHost> + </pre> + <p>Il est recommandé d'utiliser une adresse IP plutôt qu'un nom de domaine comme argument à la directive <VirtualHost> @@ -194,7 +194,8 @@ to last beyond the testing phase of this system, nor do we in any way guarantee var disqus_shortname = 'httpd'; var disqus_identifier = 'http://httpd.apache.org/docs/2.4/vhosts/ip-based.html.fr'; (function(w, d) { - if (w.location.hostname.toLowerCase() == "httpd.apache.org") { + var disabled = true; + if (w.location.hostname.toLowerCase() == "httpd.apache.org" && disabled !== true) { d.write('<div id="disqus_thread"><\/div>'); var s = d.createElement('script'); s.type = 'text/javascript'; @@ -203,7 +204,7 @@ var disqus_identifier = 'http://httpd.apache.org/docs/2.4/vhosts/ip-based.html.f (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s); } else { - d.write('<div id="disqus_thread">Comments have been disabled for offline viewing.<\/div>'); + d.write('<div id="disqus_thread">Comments are disabled for this page at the moment.<\/div>'); } })(window, document); //--><!]]></script></div><div id="footer"> |