diff options
author | Lucien Gentis <lgentis@apache.org> | 2015-05-23 18:30:17 +0200 |
---|---|---|
committer | Lucien Gentis <lgentis@apache.org> | 2015-05-23 18:30:17 +0200 |
commit | 1036910d24eaf4b62b05928e0d3f182c3fa290c7 (patch) | |
tree | ebd53cfe2a023641528fad2d0c86ad96a39cbf3b /docs/manual/vhosts/ip-based.html.fr | |
parent | XML updates. (diff) | |
download | apache2-1036910d24eaf4b62b05928e0d3f182c3fa290c7.tar.xz apache2-1036910d24eaf4b62b05928e0d3f182c3fa290c7.zip |
Rebuild.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1681364 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 | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/docs/manual/vhosts/ip-based.html.fr b/docs/manual/vhosts/ip-based.html.fr index 4864d67895..7f49764209 100644 --- a/docs/manual/vhosts/ip-based.html.fr +++ b/docs/manual/vhosts/ip-based.html.fr @@ -29,8 +29,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> @@ -141,18 +139,18 @@ résident pour des serveurs virtuels</a></h2> <pre class="prettyprint lang-config"><VirtualHost 172.20.30.40:80> ServerAdmin webmaster@www1.example.com - DocumentRoot /www/vhosts/www1 + DocumentRoot "/www/vhosts/www1" ServerName www1.example.com - ErrorLog /www/logs/www1/error_log - CustomLog /www/logs/www1/access_log combined + 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 + 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 + ErrorLog "/www/logs/www2/error_log" + CustomLog "/www/logs/www2/access_log" combined </VirtualHost></pre> |