You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ni...@apache.org on 2010/12/03 18:43:25 UTC

svn commit: r1041928 [1/2] - in /httpd/httpd/branches/2.2.x/docs/manual: ./ mod/

Author: nilgun
Date: Fri Dec  3 17:43:24 2010
New Revision: 1041928

URL: http://svn.apache.org/viewvc?rev=1041928&view=rev
Log:
update transformations.

Modified:
    httpd/httpd/branches/2.2.x/docs/manual/mod/core.html.en
    httpd/httpd/branches/2.2.x/docs/manual/mod/core.html.fr
    httpd/httpd/branches/2.2.x/docs/manual/mod/core.html.tr.utf8
    httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml.de
    httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml.ja
    httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml.meta
    httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml.tr
    httpd/httpd/branches/2.2.x/docs/manual/mod/directives.html.tr.utf8
    httpd/httpd/branches/2.2.x/docs/manual/mod/mod_env.html.tr.utf8
    httpd/httpd/branches/2.2.x/docs/manual/mod/mod_env.xml.meta
    httpd/httpd/branches/2.2.x/docs/manual/mod/mpm_common.html.tr.utf8
    httpd/httpd/branches/2.2.x/docs/manual/mod/mpm_common.xml.meta
    httpd/httpd/branches/2.2.x/docs/manual/mod/quickreference.html.tr.utf8
    httpd/httpd/branches/2.2.x/docs/manual/sections.html.fr

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/core.html.en
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/mod/core.html.en?rev=1041928&r1=1041927&r2=1041928&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/core.html.en (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/core.html.en Fri Dec  3 17:43:24 2010
@@ -112,12 +112,12 @@ available</td></tr>
 <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>core</td></tr>
 <tr><th><a href="directive-dict.html#Compatibility">Compatibility:</a></th><td>Available in Apache 2.1.5 and later</td></tr>
 </table>
-    <p>This directive enables operating system specific optimizations for a 
-       listening socket by the Protocol type. The basic premise is for the 
-       kernel to not send a socket to the server process until either data 
+    <p>This directive enables operating system specific optimizations for a
+       listening socket by the Protocol type. The basic premise is for the
+       kernel to not send a socket to the server process until either data
        is received or an entire HTTP Request is buffered. Only
        <a href="http://www.freebsd.org/cgi/man.cgi?query=accept_filter&amp;sektion=9">
-       FreeBSD's Accept Filters</a> and Linux's more primitive 
+       FreeBSD's Accept Filters</a> and Linux's more primitive
        <code>TCP_DEFER_ACCEPT</code> are currently supported.</p>
 
     <p>The default values on FreeBSD are:</p>
@@ -125,12 +125,12 @@ available</td></tr>
         AcceptFilter http httpready <br />
         AcceptFilter https dataready
     </code></p></div>
-    
+
     <p>The <code>httpready</code> accept filter buffers entire HTTP requests at
-       the kernel level.  Once an entire request is received, the kernel then 
-       sends it to the server. See the 
+       the kernel level.  Once an entire request is received, the kernel then
+       sends it to the server. See the
        <a href="http://www.freebsd.org/cgi/man.cgi?query=accf_http&amp;sektion=9">
-       accf_http(9)</a> man page for more details.  Since HTTPS requests are 
+       accf_http(9)</a> man page for more details.  Since HTTPS requests are
        encrypted only the <a href="http://www.freebsd.org/cgi/man.cgi?query=accf_data&amp;sektion=9">
        accf_data(9)</a> filter is used.</p>
 
@@ -141,13 +141,13 @@ available</td></tr>
     </code></p></div>
 
     <p>Linux's <code>TCP_DEFER_ACCEPT</code> does not support buffering http
-       requests.  Any value besides <code>none</code> will enable 
+       requests.  Any value besides <code>none</code> will enable
        <code>TCP_DEFER_ACCEPT</code> on that listener. For more details
-       see the Linux 
+       see the Linux
        <a href="http://homepages.cwi.nl/~aeb/linux/man2html/man7/tcp.7.html">
        tcp(7)</a> man page.</p>
 
-    <p>Using <code>none</code> for an argument will disable any accept filters 
+    <p>Using <code>none</code> 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 <code>nntp</code>:</p>
     <div class="example"><p><code>AcceptFilter nntp none</code></p></div>
@@ -510,7 +510,7 @@ be passed through</td></tr>
     server error.</p>
 
     <div class="note"><p>For security and performance reasons, do not set
-    <code>AllowOverride</code> to anything other than <code>None</code> 
+    <code>AllowOverride</code> to anything other than <code>None</code>
     in your <code>&lt;Directory /&gt;</code> block. Instead, find (or
     create) the <code>&lt;Directory&gt;</code> block that refers to the
     directory where you're actually planning to place a
@@ -703,7 +703,7 @@ named file-system directory, sub-directo
     <p><code class="directive">&lt;Directory&gt;</code> and
     <code>&lt;/Directory&gt;</code> are used to enclose a group of
     directives that will apply only to the named directory,
-    sub-directories of that directory, and the files within the respective 
+    sub-directories of that directory, and the files within the respective
     directories.  Any directive that is allowed
     in a directory context may be used. <var>Directory-path</var> is
     either the full path to a directory, or a wild-card string using
@@ -845,7 +845,7 @@ subdirectories</td></tr>
     <code>&lt;/DirectoryMatch&gt;</code> are used to enclose a group
     of directives which will apply only to the named directory  and
     <em>sub-directories of that directory</em> (and the files within), the same as <code class="directive"><a href="#directory">&lt;Directory&gt;</a></code>. However, it
-    takes as an argument a <a class="glossarylink" href="../glossary.html#regex" title="see glossary">regular 
+    takes as an argument a <a class="glossarylink" href="../glossary.html#regex" title="see glossary">regular
     expression</a>. For example:</p>
 
     <div class="example"><p><code>
@@ -892,7 +892,7 @@ from the web</td></tr>
 
     <p>then an access to
     <code>http://www.my.host.com/index.html</code> refers to
-    <code>/usr/web/index.html</code>. If the <var>directory-path</var> is 
+    <code>/usr/web/index.html</code>. If the <var>directory-path</var> is
     not absolute then it is assumed to be relative to the <code class="directive"><a href="#serverroot">ServerRoot</a></code>.</p>
 
     <p>The <code class="directive">DocumentRoot</code> should be specified without
@@ -1137,7 +1137,7 @@ in case of an error</td></tr>
 </table>
     <p>The <code class="directive">ErrorLog</code> directive sets the name of
     the file to which the server will log any errors it encounters. If
-    the <var>file-path</var> is not absolute then it is assumed to be 
+    the <var>file-path</var> is not absolute then it is assumed to be
     relative to the <code class="directive"><a href="#serverroot">ServerRoot</a></code>.</p>
 
     <div class="example"><h3>Example</h3><p><code>
@@ -1173,7 +1173,7 @@ in case of an error</td></tr>
     <div class="warning"><h3>Note</h3>
       <p>When entering a file path on non-Unix platforms, care should be taken
       to make sure that only forward slashes are used even though the platform
-      may allow the use of back slashes. In general it is a good idea to always 
+      may allow the use of back slashes. In general it is a good idea to always
       use forward slashes throughout the configuration files.</p>
     </div>
 
@@ -1243,8 +1243,8 @@ HTTP response header for static files</t
     changed via <code class="directive">FileETag</code>.
     </div>
     <div class="note"><h3>Server Side Includes</h3>
-    An ETag is not generated for responses parsed by <code class="module"><a href="../mod/mod_include.html">mod_include</a></code>, 
-    since the response entity can change without a change of the INode, MTime, or Size 
+    An ETag is not generated for responses parsed by <code class="module"><a href="../mod/mod_include.html">mod_include</a></code>,
+    since the response entity can change without a change of the INode, MTime, or Size
     of the static file with embedded SSI directives.
     </div>
 
@@ -1279,7 +1279,7 @@ filenames</td></tr>
     <p>The <var>filename</var> argument should include a filename, or
     a wild-card string, where <code>?</code> matches any single character,
     and <code>*</code> matches any sequences of characters.
-    <a class="glossarylink" href="../glossary.html#regex" title="see glossary">Regular expressions</a> 
+    <a class="glossarylink" href="../glossary.html#regex" title="see glossary">Regular expressions</a>
     can also be used, with the addition of the
     <code>~</code> character. For example:</p>
 
@@ -1316,7 +1316,7 @@ filenames</td></tr>
     <p>The <code class="directive">&lt;FilesMatch&gt;</code> directive
     limits the scope of the enclosed directives by filename, just as the
     <code class="directive"><a href="#files">&lt;Files&gt;</a></code> directive
-    does. However, it accepts a <a class="glossarylink" href="../glossary.html#regex" title="see glossary">regular 
+    does. However, it accepts a <a class="glossarylink" href="../glossary.html#regex" title="see glossary">regular
     expression</a>. For example:</p>
 
     <div class="example"><p><code>
@@ -1397,7 +1397,7 @@ MIME content-type</td></tr>
     argument ends with a percent symbol ('%'), subdirectories are created
     for each process id.</p>
 
-    <p>This directive currently only works with the <code class="module"><a href="../mod/prefork.html">prefork</a></code> 
+    <p>This directive currently only works with the <code class="module"><a href="../mod/prefork.html">prefork</a></code>
     MPM.</p>
 
 </div>
@@ -1587,7 +1587,7 @@ the server configuration files</td></tr>
     files in a directory that can cause <code class="program"><a href="../programs/httpd.html">httpd</a></code> to
     fail.</p>
 
-    <p>The file path specified may be an absolute path, or may be relative 
+    <p>The file path specified may be an absolute path, or may be relative
     to the <code class="directive"><a href="#serverroot">ServerRoot</a></code> directory.</p>
 
     <p>Examples:</p>
@@ -1668,7 +1668,7 @@ requests on a persistent connection</td>
     may cause performance problems in heavily loaded servers. The
     higher the timeout, the more server processes will be kept
     occupied waiting on connections with idle clients.</p>
-    
+
     <p>In a name-based virtual host context, the value of the first
     defined virtual host (the default host) in a set of <code class="directive"><a href="#namevirtualhost">NameVirtualHost</a></code> will be used.
     The other values will be ignored.</p>
@@ -1876,7 +1876,7 @@ will be accepted from the client</td></t
     </code></p></div>
 
      <div class="warning"><h3>Warning</h3>
-     <p> When name-based virtual hosting is used, the value for this 
+     <p> When name-based virtual hosting is used, the value for this
      directive is taken from the default (first-listed) virtual host for the
      <code class="directive">NameVirtualHost</code> the connection was mapped to.</p>
      </div>
@@ -1898,11 +1898,11 @@ client</td></tr>
     that will be allowed in an HTTP request header.</p>
 
     <p>The <code class="directive">LimitRequestFieldSize</code> directive
-    allows the server administrator to reduce or increase the limit 
+    allows the server administrator to reduce or increase the limit
     on the allowed size of an HTTP request header field. A server
-    needs this value to be large enough to hold any one header field 
-    from a normal client request. The size of a normal request header 
-    field will vary greatly among different client implementations, 
+    needs this value to be large enough to hold any one header field
+    from a normal client request. The size of a normal request header
+    field will vary greatly among different client implementations,
     often depending upon the extent to which a user has configured
     their browser to support detailed content negotiation. SPNEGO
     authentication headers can be up to 12392 bytes.</p>
@@ -1921,7 +1921,7 @@ client</td></tr>
     the default.</div>
 
     <div class="warning"><h3>Warning</h3>
-    <p> When name-based virtual hosting is used, the value for this 
+    <p> When name-based virtual hosting is used, the value for this
     directive is taken from the default (first-listed) virtual host for the
     <code class="directive">NameVirtualHost</code> the connection was mapped to.</p>
     </div>
@@ -1939,7 +1939,7 @@ from the client</td></tr>
 <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Core</td></tr>
 <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>core</td></tr>
 </table>
-    <p>This directive sets the number of <var>bytes</var> that will be 
+    <p>This directive sets the number of <var>bytes</var> that will be
     allowed on the HTTP request-line.</p>
 
     <p>The <code class="directive">LimitRequestLine</code> directive allows
@@ -1966,7 +1966,7 @@ from the client</td></tr>
     the default.</div>
 
     <div class="warning"><h3>Warning</h3>
-    <p> When name-based virtual hosting is used, the value for this 
+    <p> When name-based virtual hosting is used, the value for this
     directive is taken from the default (first-listed) virtual host for the
     <code class="directive">NameVirtualHost</code> the connection was mapped to.</p>
     </div>
@@ -2022,39 +2022,38 @@ URLs</td></tr>
     filesystem location, such access controls may by circumvented.</p>
 
     <p>The enclosed directives will be applied to the request if the path component
-    of the URL meets <em>any</em> of the following criteria:
+    of the URL meets <em>any</em> of the following criteria:</p>
     <ul>
       <li>The specified location matches exactly the path component of the URL.
       </li>
-      <li>The specified location, which ends in a forward slash, is a prefix 
+      <li>The specified location, which ends in a forward slash, is a prefix
       of the path component of the URL (treated as a context root).
       </li>
-      <li>The specified location, with the addition of a trailing slash, is a 
+      <li>The specified location, with the addition of a trailing slash, is a
       prefix of the path component of the URL (also treated as a context root).
       </li>
     </ul>
-    In the example below, where no trailing slash is used, requests to 
+    <p>In the example below, where no trailing slash is used, requests to
     /private1, /private1/ and /private1/file.txt will have the enclosed
-    directives applied, but /private1other would not. 
+    directives applied, but /private1other would not.</p>
     <div class="example"><p><code>
       &lt;Location /private1&gt;
           ...
     </code></p></div>
-    In the example below, where a trailing slash is used, requests to 
+    <p>In the example below, where a trailing slash is used, requests to
     /private2/ and /private2/file.txt will have the enclosed
-    directives applied, but /private2 and /private2other would not. 
+    directives applied, but /private2 and /private2other would not.</p>
     <div class="example"><p><code>
       &lt;Location /private2<em>/</em>&gt;
           ...
     </code></p></div>
-    </p>
 
     <div class="note"><h3>When to use <code class="directive">&lt;Location&gt;</code></h3>
 
     <p>Use <code class="directive">&lt;Location&gt;</code> to apply
     directives to content that lives outside the filesystem.  For
     content that lives in the filesystem, use <code class="directive"><a href="#directory">&lt;Directory&gt;</a></code> and <code class="directive"><a href="#files">&lt;Files&gt;</a></code>.  An exception is
-    <code>&lt;Location /&gt;</code>, which is an easy way to 
+    <code>&lt;Location /&gt;</code>, which is an easy way to
     apply a configuration to the entire server.</p>
     </div>
 
@@ -2582,7 +2581,7 @@ a resource</td></tr>
 </table>
     <p>This directive selects which authenticated users can access a
     resource.  Multipe instances of this directive are combined with a logical
-    "OR", such that a user matching any <code class="directive">Require </code>line is 
+    "OR", such that a user matching any <code class="directive">Require </code>line is
     granted access.  The restrictions are processed by authorization
     modules.  Some of the allowed syntaxes provided by
     <code class="module"><a href="../mod/mod_authz_user.html">mod_authz_user</a></code> and
@@ -2627,8 +2626,8 @@ a resource</td></tr>
     place the <code class="directive">Require</code> statement into a
     <code class="directive"><a href="#limit">&lt;Limit&gt;</a></code>
     section.</p>
- 
-    <p>If <code class="directive">Require</code> is used together with 
+
+    <p>If <code class="directive">Require</code> is used together with
     the <code class="directive"><a href="../mod/mod_authz_host.html#allow">Allow</a></code> or
     <code class="directive"><a href="../mod/mod_authz_host.html#deny">Deny</a></code> directives,
     then the interaction of these restrictions is controlled by
@@ -2656,7 +2655,7 @@ a resource</td></tr>
       &lt;/Directory&gt;<br />
     </code></p></div>
     </div>
-      
+
 
 <h3>See also</h3>
 <ul>
@@ -2978,7 +2977,7 @@ itself</td></tr>
     <p>Additionally, <code class="directive">ServerName</code> is used (possibly
     in conjunction with <code class="directive">ServerAlias</code>) to uniquely
     identify a virtual host, when using <a href="../vhosts/name-based.html">name-based virtual hosts</a>.</p>
-    
+
     <p>For example, if the name of the
     machine hosting the web server is <code>simple.example.com</code>,
     but the machine also has the DNS alias <code>www.example.com</code>
@@ -3010,7 +3009,7 @@ itself</td></tr>
     <code>https://</code> scheme and the port number to which the
     clients connect in the <code class="directive">ServerName</code> directive
     to make sure that the server generates the correct
-    self-referential URLs. 
+    self-referential URLs.
     </p>
 
     <p>See the description of the
@@ -3065,7 +3064,7 @@ is accessed by an incompatible browser</
     <p>The <code class="directive">ServerRoot</code> directive sets the
     directory in which the server lives. Typically it will contain the
     subdirectories <code>conf/</code> and <code>logs/</code>. Relative
-    paths in other configuration directives (such as <code class="directive"><a href="#include">Include</a></code> or <code class="directive"><a href="../mod/mod_so.html#loadmodule">LoadModule</a></code>, for example) are taken as 
+    paths in other configuration directives (such as <code class="directive"><a href="#include">Include</a></code> or <code class="directive"><a href="../mod/mod_so.html#loadmodule">LoadModule</a></code>, for example) are taken as
     relative to this directory.</p>
 
     <div class="example"><h3>Example</h3><p><code>
@@ -3347,7 +3346,7 @@ requests</td></tr>
     allowed) error to the client.</p>
 
     <p>Finally, for testing and diagnostic purposes only, request
-    bodies may be allowed using the non-compliant <code>TraceEnable 
+    bodies may be allowed using the non-compliant <code>TraceEnable
     extended</code> directive.  The core (as an origin server) will
     restrict the request body to 64k (plus 8k for chunk headers if
     <code>Transfer-Encoding: chunked</code> is used).  The core will
@@ -3455,7 +3454,7 @@ port</td></tr>
       <li>Port provided in <code>Servername</code></li>
       <li>Default port</li>
      </ul>
-    
+
     <p>With <code>UseCanonicalPhysicalPort Off</code>, the
     physical ports are removed from the ordering.</p>
     </div>

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/core.html.fr
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/mod/core.html.fr?rev=1041928&r1=1041927&r2=1041928&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/core.html.fr (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/core.html.fr Fri Dec  3 17:43:24 2010
@@ -727,8 +727,8 @@ versions d'Apache 2.2.7 et supérieures<
 <div class="directive-section"><h2><a name="Directory" id="Directory">&lt;Directory&gt;</a> <a name="directory" id="directory">Directive</a></h2>
 <table class="directive">
 <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Regroupe un ensemble de directives qui ne s'appliquent
-qu'au répertoire concerné du système de fichiers et à ses
-sous-répertoires</td></tr>
+qu'au répertoire concerné du système de fichiers, à ses
+sous-répertoires, et à leur contenu.</td></tr>
 <tr><th><a href="directive-dict.html#Syntax">Syntaxe:</a></th><td><code>&lt;Directory <var>chemin répertoire</var>&gt;
 ... &lt;/Directory&gt;</code></td></tr>
 <tr><th><a href="directive-dict.html#Context">Contexte:</a></th><td>configuration du serveur, serveur virtuel</td></tr>
@@ -737,8 +737,9 @@ sous-répertoires</td></tr>
 </table>
     <p>Les balises <code class="directive">&lt;Directory&gt;</code> et
     <code>&lt;/Directory&gt;</code> permettent de regrouper un ensemble
-    de directives qui ne s'appliquent qu'au répertoire précisé
-    et à ses sous-répertoires. Toute directive
+    de directives qui ne s'appliquent qu'au répertoire
+    précisé, à ses sous-répertoires, et aux fichiers situés dans ces
+    sous-répertoires. Toute directive
     autorisée dans un contexte de répertoire peut être utilisée.
     <var>chemin répertoire</var> est soit le chemin absolu d'un
     répertoire, soit une chaîne de caractères avec caractères génériques
@@ -886,7 +887,7 @@ leurs sous-répertoires</td></tr>
     <p>Les balises <code class="directive">&lt;DirectoryMatch&gt;</code>
     et <code>&lt;/DirectoryMatch&gt;</code> permettent de regrouper un
     ensemble de directives qui ne s'appliqueront qu'au répertoire
-    précisé <em>et à ses sous-répertoires</em>, comme pour la section <code class="directive"><a href="#directory">&lt;Directory&gt;</a></code>. Cependant, le
+    précisé (et aux fichiers qu'il contient), comme pour la section <code class="directive"><a href="#directory">&lt;Directory&gt;</a></code>. Cependant, le
     répertoire est précisé sous la forme d'une <a class="glossarylink" href="../glossary.html#regex" title="voir glossaire">expression rationnelle</a>. Par exemple :</p>
 
     <div class="example"><p><code>
@@ -1005,7 +1006,7 @@ lire les fichiers pendant qu'ils sont se
     </code></p></div>
 
 
-    
+
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -2181,6 +2182,37 @@ spécifiées</td></tr>
     plusieurs URLs peuvent correspondre au même répertoire du système de
     fichiers, un tel contrôle d'accès pourrait être contourné.</p>
 
+    <p>Les directives que contient cette section seront appliquées aux
+    requêtes si la partie chemin de l'URL satisfait à l'un au moins de
+    ces critères :</p>
+    <ul>
+      <li>Le chemin spécifié correspond exactement à la partie chemin de
+      l'URL.
+      </li>
+      <li>Le chemin spécifié, qui se termine par un slash, est un
+      préfixe de la partie chemin de l'URL (traité comme une racine du
+      contexte).
+      </li>
+      <li>Le chemin spécifié, si on lui ajoute un slash de fin, est un
+      préfixe de la partie chemin de l'URL (aussi traité comme une racine du
+      contexte).
+      </li>
+    </ul>
+    <p>Dans l'exemple ci-dessous, où aucun slash de fin n'est utilisé, les
+    directives contenues dans la section s'appliqueront à /private1,
+    /private1/ et /private1/file.txt, mais pas à /private1other.</p>
+    <div class="example"><p><code>
+      &lt;Location /private1&gt;
+          ...
+    </code></p></div>
+    <p>De même, dans l'exemple ci-dessous, où l'on utilise un slash de fin, les
+    directives contenues dans la section s'appliqueront à /private2/ et
+    à /private2/file.txt, mais pas à /private2other.</p>
+    <div class="example"><p><code>
+      &lt;Location /private2<em>/</em>&gt;
+          ...
+    </code></p></div>
+
     <div class="note"><h3>Quand utiliser la section <code class="directive">&lt;Location&gt;</code></h3>
 
     <p>Vous pouvez utiliser une section <code class="directive">&lt;Location&gt;</code> pour appliquer des directives à

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/core.html.tr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/mod/core.html.tr.utf8?rev=1041928&r1=1041927&r2=1041928&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/core.html.tr.utf8 [utf-8] (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/core.html.tr.utf8 [utf-8] Fri Dec  3 17:43:24 2010
@@ -27,7 +27,6 @@
 <a href="../ja/mod/core.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="../tr/mod/core.html" title="Türkçe">&nbsp;tr&nbsp;</a></p>
 </div>
-<div class="outofdate">Bu çeviri güncel olmayabilir. Son değişiklikler için İngilizce sürüm geçerlidir.</div>
 <table class="module"><tr><th><a href="module-dict.html#Description">Açıklama:</a></th><td>Apache HTTP Sunucusunda daima mevcut olan çekirdek
  özellikler</td></tr>
 <tr><th><a href="module-dict.html#Status">Durum:</a></th><td>Çekirdek</td></tr></table>
@@ -57,6 +56,7 @@
 <li><img alt="" src="../images/down.gif" /> <a href="#files">&lt;Files&gt;</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#filesmatch">&lt;FilesMatch&gt;</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#forcetype">ForceType</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#gprofdir">GprofDir</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#hostnamelookups">HostnameLookups</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#ifdefine">&lt;IfDefine&gt;</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#ifmodule">&lt;IfModule&gt;</a></li>
@@ -77,6 +77,7 @@
 <li><img alt="" src="../images/down.gif" /> <a href="#maxkeepaliverequests">MaxKeepAliveRequests</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#namevirtualhost">NameVirtualHost</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#options">Options</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#protocol">Protocol</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#require">Require</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#rlimitcpu">RLimitCPU</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#rlimitmem">RLimitMEM</a></li>
@@ -148,6 +149,10 @@
       kullanışlıdır:</p>
     <div class="example"><p><code>AcceptFilter nntp none</code></p></div>
 
+<h3>Ayrıca bakınız:</h3>
+<ul>
+<li><code class="directive">Protocol</code></li>
+</ul>
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="directive-section"><h2><a name="AcceptPathInfo" id="AcceptPathInfo">AcceptPathInfo</a> <a name="acceptpathinfo" id="acceptpathinfo">Yönergesi</a></h2>
@@ -698,8 +703,9 @@ kullanımı önerilmemektedir.</td></tr>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="directive-section"><h2><a name="Directory" id="Directory">&lt;Directory&gt;</a> <a name="directory" id="directory">Yönergesi</a></h2>
 <table class="directive">
-<tr><th><a href="directive-dict.html#Description">Açıklama:</a></th><td>Sadece ismi belirtilen dosya sistemi dizininde ve bunun
-  altdizinlerinde uygulanacak bir yönerge grubunu sarmalar.</td></tr>
+<tr><th><a href="directive-dict.html#Description">Açıklama:</a></th><td>Sadece ismi belirtilen dosya sistemi dizinine ve bunun
+  altdizinleri ile içeriklerine uygulanacak bir yönerge grubunu
+  sarmalar.</td></tr>
 <tr><th><a href="directive-dict.html#Syntax">Sözdizimi:</a></th><td><code>&lt;Directory <var>dizin-yolu</var>&gt;
 ... &lt;/Directory&gt;</code></td></tr>
 <tr><th><a href="directive-dict.html#Context">Bağlam:</a></th><td>sunucu geneli, sanal konak</td></tr>
@@ -708,17 +714,17 @@ kullanımı önerilmemektedir.</td></tr>
 </table>
     <p><code class="directive">&lt;Directory&gt;</code> ve
       <code>&lt;/Directory&gt;</code> sadece ismi belirtilen dosya sistemi
-      dizininde ve bunun altdizinlerinde uygulanacak bir yönerge grubunu
-      sarmalamakta kullanılır. Bir dizin bağlamında kullanılabilecek her
-      yönergeye izin verilir. <var>dizin-yolu</var> bir dizinin tam yolu
-      olabileceği gibi Unix kabuk tarzı bir dosya ismi eşleştirme kalıbı da
-      olabilir. Kalıp dizgesinde, <code>?</code> herhangi bir tek karakterle,
-      <code>*</code> herhangi bir karakter dizisiyle eşleşir. Ayrıca
-      <code>[]</code> karakter aralıkları da kullanılabilir. ‘/’ karakteri
-      ile hiçbir kalıp karakteri eşleşmez, bu bakımdan <code>&lt;Directory
-      /*/public_html&gt;</code> ile <code>/home/user/public_html</code>
-      değil, ama <code>&lt;Directory /home/*/public_html&gt;</code>
-      eşleşecektir. Örnek:</p>
+      dizini ve bunun altdizinleri ile bu dizinlerin içeriklerine uygulanacak
+      bir yönerge grubunu sarmalamakta kullanılır. Bir dizin bağlamında
+      kullanılabilecek her yönergeye izin verilir. <var>dizin-yolu</var> bir
+      dizinin tam yolu olabileceği gibi Unix kabuk tarzı bir dosya ismi
+      eşleştirme kalıbı da olabilir. Kalıp dizgesinde, <code>?</code> herhangi
+      bir tek karakterle, <code>*</code> herhangi bir karakter dizisiyle
+      eşleşir. Ayrıca <code>[]</code> karakter aralıkları da kullanılabilir. ‘/’
+      karakteri ile hiçbir kalıp karakteri eşleşmez, bu bakımdan
+      <code>&lt;Directory /*/public_html&gt;</code> ile
+      <code>/home/user/public_html</code> değil, ama <code>&lt;Directory
+      /home/*/public_html&gt;</code> eşleşecektir. Örnek:</p>
 
     <div class="example"><p><code>
       &lt;Directory /usr/local/httpd/htdocs&gt;<br />
@@ -842,9 +848,10 @@ kullanımı önerilmemektedir.</td></tr>
 </table>
     <p><code class="directive">&lt;DirectoryMatch&gt;</code> and
     <code>&lt;/DirectoryMatch&gt;</code> yönergeleri <code class="directive"><a href="#directory">&lt;Directory&gt;</a></code> gibi sadece ismi
-      belirtilen dosya sistemi dizininde ve bunun <em>altdizinlerinde</em>
-      uygulanacak bir yönerge grubunu sarmalamakta kullanılır. Tek farkla
-      argüman olarak bir <a class="glossarylink" href="../glossary.html#regex" title="sözlüğe bakınız">düzenli ifade</a> alır.
+      belirtilen dosya sistemi dizinine ve bunun <em>altdizinleri</em> ile
+      bunların içerdiği dosyalara uygulanacak bir yönerge grubunu sarmalamakta
+      kullanılır. Tek farkla argüman olarak bir <a class="glossarylink" href="../glossary.html#regex" title="sözlüğe bakınız">düzenli
+      ifade</a> alır.
       Örnek:</p>
 
     <div class="example"><p><code>
@@ -1391,6 +1398,24 @@ oluşturmakta kullanılacak dosya öznit
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+<div class="directive-section"><h2><a name="GprofDir" id="GprofDir">GprofDir</a> <a name="gprofdir" id="gprofdir">Yönergesi</a></h2>
+<table class="directive">
+<tr><th><a href="directive-dict.html#Description">Açıklama:</a></th><td>gmon.out profilleme verisinin yazılacağı dizin.</td></tr>
+<tr><th><a href="directive-dict.html#Syntax">Sözdizimi:</a></th><td><code>GprofDir <var>/tmp/gprof/</var>|<var>/tmp/gprof/</var>%</code></td></tr>
+<tr><th><a href="directive-dict.html#Context">Bağlam:</a></th><td>sunucu geneli, sanal konak</td></tr>
+<tr><th><a href="directive-dict.html#Status">Durum:</a></th><td>Çekirdek</td></tr>
+<tr><th><a href="directive-dict.html#Module">Modül:</a></th><td>core</td></tr>
+</table>
+    <p>Sunucu gprof profilleme desteği ile derlendiği takdirde
+      <code class="directive">GprofDir</code> yönergesi, süreç çıkarken
+      <code>gmon.out</code> dosyalarının belirtilen dizine yazılmasını sağlar.
+      Eğer değistirge yüzde simgesi (%) ile bitirilirse her süreç kimliği (PID)
+      için ayrı bir aldizin oluşturulur.</p>
+
+    <p>Bu yönerge sadece <code class="module"><a href="../mod/prefork.html">prefork</a></code> MPM ile çalışır.</p>
+
+</div>
+<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="directive-section"><h2><a name="HostnameLookups" id="HostnameLookups">HostnameLookups</a> <a name="hostnamelookups" id="hostnamelookups">Yönergesi</a></h2>
 <table class="directive">
 <tr><th><a href="directive-dict.html#Description">Açıklama:</a></th><td>İstemci IP adresleri üzerinde DNS sorgularını etkin kılar.
@@ -1826,7 +1851,7 @@ uzunluğunu sınırlar.</td></tr>
 sınırlar.</td></tr>
 <tr><th><a href="directive-dict.html#Syntax">Sözdizimi:</a></th><td><code>LimitRequestFields <var>sayı</var></code></td></tr>
 <tr><th><a href="directive-dict.html#Default">Öntanımlı:</a></th><td><code>LimitRequestFields 100</code></td></tr>
-<tr><th><a href="directive-dict.html#Context">Bağlam:</a></th><td>sunucu geneli</td></tr>
+<tr><th><a href="directive-dict.html#Context">Bağlam:</a></th><td>sunucu geneli, sanal konak</td></tr>
 <tr><th><a href="directive-dict.html#Status">Durum:</a></th><td>Çekirdek</td></tr>
 <tr><th><a href="directive-dict.html#Module">Modül:</a></th><td>core</td></tr>
 </table>
@@ -1858,6 +1883,12 @@ sınırlar.</td></tr>
       LimitRequestFields 50
     </code></p></div>
 
+    <div class="warning"><h3>Uyarı</h3>
+      <p>İsme dayalı sanal konaklar kullanılıyorsa bu yönergenin değeri,
+        bağlantının eşleştirildiği ilk <code class="directive">NameVirtualHost</code>
+        yönergesinden (listedeki ilk - öntanımlı - konak) alınır.</p>
+    </div>
+
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -1867,7 +1898,7 @@ sınırlar.</td></tr>
 </td></tr>
 <tr><th><a href="directive-dict.html#Syntax">Sözdizimi:</a></th><td><code>LimitRequestFieldSize <var>bayt-sayısı</var></code></td></tr>
 <tr><th><a href="directive-dict.html#Default">Öntanımlı:</a></th><td><code>LimitRequestFieldSize 8190</code></td></tr>
-<tr><th><a href="directive-dict.html#Context">Bağlam:</a></th><td>sunucu geneli</td></tr>
+<tr><th><a href="directive-dict.html#Context">Bağlam:</a></th><td>sunucu geneli, sanal konak</td></tr>
 <tr><th><a href="directive-dict.html#Status">Durum:</a></th><td>Çekirdek</td></tr>
 <tr><th><a href="directive-dict.html#Module">Modül:</a></th><td>core</td></tr>
 </table>
@@ -1895,6 +1926,12 @@ sınırlar.</td></tr>
 
     <div class="note">Normal şartlar altında öntanımlı değer değiştirilmemelidir.</div>
 
+    <div class="warning"><h3>Uyarı</h3>
+      <p>İsme dayalı sanal konaklar kullanılıyorsa bu yönergenin değeri,
+        bağlantının eşleştirildiği ilk <code class="directive">NameVirtualHost</code>
+        yönergesinden (listedeki ilk - öntanımlı - konak) alınır.</p>
+    </div>
+
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
@@ -1904,7 +1941,7 @@ sınırlar.</td></tr>
 </td></tr>
 <tr><th><a href="directive-dict.html#Syntax">Sözdizimi:</a></th><td><code>LimitRequestLine <var>bayt-sayısı</var></code></td></tr>
 <tr><th><a href="directive-dict.html#Default">Öntanımlı:</a></th><td><code>LimitRequestLine 8190</code></td></tr>
-<tr><th><a href="directive-dict.html#Context">Bağlam:</a></th><td>sunucu geneli</td></tr>
+<tr><th><a href="directive-dict.html#Context">Bağlam:</a></th><td>sunucu geneli, sanal konak</td></tr>
 <tr><th><a href="directive-dict.html#Status">Durum:</a></th><td>Çekirdek</td></tr>
 <tr><th><a href="directive-dict.html#Module">Modül:</a></th><td>core</td></tr>
 </table>
@@ -1932,6 +1969,13 @@ sınırlar.</td></tr>
 
     <div class="note">Normal şartlar altında öntanımlı değer değiştirilmemelidir.</div>
 
+    <div class="warning"><h3>Uyarı</h3>
+      <p>İsme dayalı sanal konaklar kullanılıyorsa bu yönergenin değeri,
+        bağlantının eşleştirildiği ilk <code class="directive">NameVirtualHost</code>
+        yönergesinden (listedeki ilk - öntanımlı - konak) alınır.</p>
+    </div>
+
+
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="directive-section"><h2><a name="LimitXMLRequestBody" id="LimitXMLRequestBody">LimitXMLRequestBody</a> <a name="limitxmlrequestbody" id="limitxmlrequestbody">Yönergesi</a></h2>
@@ -1984,7 +2028,35 @@ sınırlar.</td></tr>
       URL’lerle erişmek mümkün olduğundan bu tür erişim denetimleri hile ile
       atlatılabilir olacaktır.</p>
 
-    <div class="note"><h3><code class="directive">&lt;Location&gt;</code> ne zaman
+    <p>URL-yolu bileşeni aşağıdaki koşullardan herhangi birine uyduğu takdirde
+      kapsanan yönergeler isteğe uygulanacaktır:</p>
+      <ul>
+        <li>URL'nin yol bileşeni belirtilen konum ile eşleşir.</li>
+        <li>URL'nin yol bileşeninin başındaki bölü çizgisi, belirtilen konumun
+          sonundaki bölü çizgisi ile eşleşir (içeriğin kök dizini olarak ele
+          alınır).</li>
+        <li>URL'nin yol bileşeninin başındaki bölü çizgisi, belirtilen konumun
+          sonuna bir bölü çizgisi eklenerek bununla eşleşir (içeriğin kök dizini
+          olarak ele alınır)</li>
+      </ul>
+    <p>Aşağıdaki örnekte, sonda bir bölü çizgisi kullanılmamış olmasına rağmen
+      /herhangi1, /herhangi1/ ve /herhangi1/dosya.txt dizgilerini içeren
+      isteklere kapsanan yönergeler uygulanacak, ancak /herhangi1baskasi
+      dizgisini içeren bir isteğe uygulanmayacaktır.</p>
+      <div class="example"><p><code>
+        &lt;Location /herhangi1&gt;
+          ...
+      </code></p></div>
+    <p>Aşağıdaki örnekte, sonda bir bölü çizgisi kullanılmış olup, /herhangi2,
+      /herhangi2/ ve /herhangi2/dosya.txt dizgilerini içeren isteklere kapsanan
+      yönergeler uygulanacak, ancak /herhangi2baskasi dizgisini içeren bir
+      isteğe uygulanmayacaktır.</p>
+      <div class="example"><p><code>
+        &lt;Location /private2<em>/</em>&gt;
+          ...
+      </code></p></div>
+
+<div class="note"><h3><code class="directive">&lt;Location&gt;</code> ne zaman
       kullanılmalı</h3>
 
     <p><code class="directive">&lt;Location&gt;</code> yönergesini dosya sistemi
@@ -2432,6 +2504,42 @@ uygulanır.</td></tr>
 
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+<div class="directive-section"><h2><a name="Protocol" id="Protocol">Protocol</a> <a name="protocol" id="protocol">Yönergesi</a></h2>
+<table class="directive">
+<tr><th><a href="directive-dict.html#Description">Açıklama:</a></th><td>Dinlenen bir soket için protokol</td></tr>
+<tr><th><a href="directive-dict.html#Syntax">Sözdizimi:</a></th><td><code>Protocol <var>protokol</var></code></td></tr>
+<tr><th><a href="directive-dict.html#Context">Bağlam:</a></th><td>sunucu geneli, sanal konak</td></tr>
+<tr><th><a href="directive-dict.html#Status">Durum:</a></th><td>Çekirdek</td></tr>
+<tr><th><a href="directive-dict.html#Module">Modül:</a></th><td>core</td></tr>
+<tr><th><a href="directive-dict.html#Compatibility">Uyumluluk:</a></th><td>Windows üzerinde Apache 2.3.3 ve sonrasında diğerlerinde ise
+Apache 2.1.5 ve sonrasında kullanılabilmektedir.</td></tr>
+</table>
+    <p>Bu yönerge dinlenen belli bir soket için protokol belirtmek amacıyla
+    kullanılır. Protokol, bir isteği hangi modülün işleyeceğini belirlemekte ve
+    <code class="directive">AcceptFilter</code> yönergesi ile ilgili protokole özgü
+    iyileştirmeleri uygulamakta kullanılır.</p>
+
+    <p>Bu yönergeyi sadece standartdışı portlar belirtecekseniz kullanın.
+    Normalde <code>http</code> için 80, <code>https</code> için 443 portu
+    kullanılır.</p>
+
+    <p>Örneğin, <code>https</code>'i standartdışı bir port üzerinde
+    çalıştırıyorsanız bunu şöyle belirtebilirsiniz:</p>
+
+    <div class="example"><p><code>
+      Protocol https
+    </code></p></div>
+
+    <p>Kullandığınız protoklü ayrıca  <code class="directive"><a href="../mod/mpm_common.html#listen">Listen</a></code> yönergesini kullanarak da
+    belirtebilirsiniz.</p>
+
+<h3>Ayrıca bakınız:</h3>
+<ul>
+<li><code class="directive">AcceptFilter</code></li>
+<li><code class="directive"><a href="../mod/mpm_common.html#listen">Listen</a></code></li>
+</ul>
+</div>
+<div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="directive-section"><h2><a name="Require" id="Require">Require</a> <a name="require" id="require">Yönergesi</a></h2>
 <table class="directive">
 <tr><th><a href="directive-dict.html#Description">Açıklama:</a></th><td>Bir özkaynağa erişebilecek kimliği doğrulanmış kullanıcıları belirler</td></tr>
@@ -2441,8 +2549,13 @@ uygulanır.</td></tr>
 <tr><th><a href="directive-dict.html#Status">Durum:</a></th><td>Çekirdek</td></tr>
 <tr><th><a href="directive-dict.html#Module">Modül:</a></th><td>core</td></tr>
 </table>
-    <p>Bu yönerge br özkaynağa erişebilecek kimliği doğrulanmış kullanıcıları belirlemek için kullanılır. Kısıtlamalar yetkilendirme modülleri tarafından işleme sokulur. <code class="module"><a href="../mod/mod_authz_user.html">mod_authz_user</a></code> ve
-    <code class="module"><a href="../mod/mod_authz_groupfile.html">mod_authz_groupfile</a></code> tarafından izin verilen bazı sözdizimleri:</p>
+    <p>Bu yönerge br özkaynağa erişebilecek kimliği doğrulanmış kullanıcıları
+     belirlemek için kullanılır. Belli bir kullanıcı veya kullanıcı grubuna
+     erişim vermek için bu yönergeden çok sayıda yazmak yerine bunlar mantıksal
+     VEYAlarla birleştirilebilir. Kısıtlamalar yetkilendirme modülleri
+     tarafından işleme sokulur. <code class="module"><a href="../mod/mod_authz_user.html">mod_authz_user</a></code> ve
+     <code class="module"><a href="../mod/mod_authz_groupfile.html">mod_authz_groupfile</a></code> tarafından izin verilen bazı
+     sözdizimleri:</p>
 
     <dl>
       <dt><code>Require user <var>kull-kiml</var> [<var>kull-kiml</var>]
@@ -2457,10 +2570,14 @@ uygulanır.</td></tr>
       <dd>Geçerli kullanıcıların hepsi özkaynağa erişebilir.</dd>
     </dl>
 
-    <p>Gerekli diğer seçenekleri sağlayan yetkilendirme modülleri olarak <code class="module"><a href="../mod/mod_authnz_ldap.html">mod_authnz_ldap</a></code>, <code class="module"><a href="../mod/mod_authz_dbm.html">mod_authz_dbm</a></code> ve
-    <code class="module"><a href="../mod/mod_authz_owner.html">mod_authz_owner</a></code> sayılabilir.</p>
-
-    <p><code class="directive">Require</code> yönergesinin düzgün çalışması için kendisine <code class="directive"><a href="#authname">AuthName</a></code> ve <code class="directive"><a href="#authtype">AuthType</a></code> yönergelerinin yanı sıra kullanıcıları ve grupları tanımlamak için <code class="directive"><a href="../mod/mod_authn_file.html#authuserfile">AuthUserFile</a></code> ve <code class="directive"><a href="../mod/mod_authz_groupfile.html#authgroupfile">AuthGroupFile</a></code> gibi yönergelerinin de eşlik etmesi gerekir. Örnek:</p>
+    <p>Gerekli diğer seçenekleri sağlayan yetkilendirme modülleri olarak
+      <code class="module"><a href="../mod/mod_authnz_ldap.html">mod_authnz_ldap</a></code>, <code class="module"><a href="../mod/mod_authz_dbm.html">mod_authz_dbm</a></code> ve
+     <code class="module"><a href="../mod/mod_authz_owner.html">mod_authz_owner</a></code> sayılabilir.</p>
+
+    <p><code class="directive">Require</code> yönergesinin düzgün çalışması için
+      kendisine <code class="directive"><a href="#authname">AuthName</a></code> ve <code class="directive"><a href="#authtype">AuthType</a></code> yönergelerinin yanı sıra kullanıcıları
+      ve grupları tanımlamak için <code class="directive"><a href="../mod/mod_authn_file.html#authuserfile">AuthUserFile</a></code> ve <code class="directive"><a href="../mod/mod_authz_groupfile.html#authgroupfile">AuthGroupFile</a></code> gibi yönergelerinin
+      de eşlik etmesi gerekir. Örnek:</p>
 
     <div class="example"><p><code>
        AuthType Basic<br />
@@ -2470,13 +2587,23 @@ uygulanır.</td></tr>
        Require group admin
     </code></p></div>
 
-    <p>Bu yolla uygulanan erişim denetimleri <strong>tüm</strong> yöntemler için etkilidir. <strong>Normalde istenen zaten budur.</strong> Erişim denetimlerini diğerlerini korumasız bırakmak pahasına sadece belli yöntemlerle sınırlamak isterseniz <code class="directive">Require</code>  yönergesini bir <code class="directive"><a href="#limit">&lt;Limit&gt;</a></code> bölümüne yerleştirin.</p>
+    <p>Bu yolla uygulanan erişim denetimleri <strong>tüm</strong> yöntemler için
+      etkilidir. <strong>Normalde istenen zaten budur.</strong> Erişim
+      denetimlerini diğerlerini korumasız bırakmak pahasına sadece belli
+      yöntemlerle sınırlamak isterseniz <code class="directive">Require</code>
+      yönergesini bir <code class="directive"><a href="#limit">&lt;Limit&gt;</a></code>
+      bölümüne yerleştirin.</p>
 
     <p>Eğer <code class="directive">Require</code> yönergesini <code class="directive"><a href="../mod/mod_authz_host.html#allow">Allow</a></code> veya
-    <code class="directive"><a href="../mod/mod_authz_host.html#deny">Deny</a></code> yönergeleri ile birlikte kullanırsanız bu sınırlamalarla olan etkileşim <code class="directive"><a href="#satisfy">Satisfy</a></code> yönergesi tarafından denetlenir.</p>
+      <code class="directive"><a href="../mod/mod_authz_host.html#deny">Deny</a></code> yönergeleri ile
+      birlikte kullanırsanız bu sınırlamalarla olan etkileşim <code class="directive"><a href="#satisfy">Satisfy</a></code> yönergesi tarafından denetlenir.</p>
 
     <div class="note"><h3>Denetimlerin alt dizinlerden kaldırılması</h3>
-    <p>Aşağıdaki örnekte korunmuş bir dizinin bir alt dizinindeki erişim denetimlerinin kaldırılması için <code class="directive"><a href="#satisfy">Satisfy</a></code> yönergesinin nasıl kullanılacağı gösterilmiştir. Bu teknik, <code class="module"><a href="../mod/mod_authz_host.html">mod_authz_host</a></code> tarafından dayatılan erişim denetimlerini de ortadan kaldırdığından dikkatli kullanılmalıdır.</p>
+     <p>Aşağıdaki örnekte korunmuş bir dizinin bir alt dizinindeki erişim
+     denetimlerinin kaldırılması için <code class="directive"><a href="#satisfy">Satisfy</a></code> yönergesinin nasıl kullanılacağı
+     gösterilmiştir. Bu teknik, <code class="module"><a href="../mod/mod_authz_host.html">mod_authz_host</a></code> tarafından
+     dayatılan erişim denetimlerini de ortadan kaldırdığından dikkatli
+     kullanılmalıdır.</p>
     <div class="example"><p><code>
       &lt;Directory /korunmuş/dizine/giden/yol/&gt;<br />
         <span class="indent">
@@ -2629,9 +2756,22 @@ sınırlama getirir.</td></tr>
 <tr><th><a href="directive-dict.html#Module">Modül:</a></th><td>core</td></tr>
 <tr><th><a href="directive-dict.html#Compatibility">Uyumluluk:</a></th><td>2.0.51 sürümü ve sonrasında <code class="directive"><a href="#limit">&lt;Limit&gt;</a></code> ve <code class="directive"><a href="#limitexcept">&lt;LimitExcept&gt;</a></code> tarafından etkin kılınır.</td></tr>
 </table>
-    <p><code class="directive"><a href="../mod/mod_authz_host.html#allow">Allow</a></code> ve <code class="directive"><a href="#require">Require</a></code> yönergelerinin ikisi birden kullanıldığında uygulanacak erişim kuralını belirler. Değer olarak sadece <code>All</code> veya <code>Any</code> belirtilebilir. Bu yönergenin yararlı olabilmesi için belli bir alana hem istemci konak adresi hem de kullanıcı ismi ve parolası belirtmek suretiyle erişilebiliyor olunması gerekir. Bu durumda öntanımlı davranış (<code>All</code>), istemcinin belli bir adrese erişebilmek için belli kısıtlamaları aşması ve geçerli bir kullanıcı adı ve parola girmesi gerekir. <code>Any</code> seçeneğinin belirtildiği durumda ise istemcinin ya konak kısıtlamalarıdan geçmesi ya da geçerli bir kullanıcı adı ve parolası girmesi gerekir. Bu seçenek, belli bir alana erişimi parolayla kısıtlayıp, belli adreslerden gelen kullanıcılara parolasız erişim verme
 k için kullanılabilir.</p>
-
-    <p>Örneğin, sitenizin belli bir bölümü için iç ağınızdan gelen isteklere sınırsız erişim vermek ama dışardan gelen istekleri parolayla kısıtlamak isterseniz şöyle bir yapılandırma kullanabilirsiniz:</p>
+    <p><code class="directive"><a href="../mod/mod_authz_host.html#allow">Allow</a></code> ve <code class="directive"><a href="#require">Require</a></code> yönergelerinin ikisi birden
+    kullanıldığında uygulanacak erişim kuralını belirler. Değer olarak sadece
+    <code>All</code> veya <code>Any</code> belirtilebilir. Bu yönergenin yararlı
+    olabilmesi için belli bir alana hem istemci konak adresi hem de kullanıcı
+    ismi ve parolası belirtmek suretiyle erişilebiliyor olunması gerekir. Bu
+    durumda öntanımlı davranış (<code>All</code>), istemcinin belli bir adrese
+    erişebilmek için belli kısıtlamaları aşması ve geçerli bir kullanıcı adı ve
+    parola girmesi gerekir. <code>Any</code> seçeneğinin belirtildiği durumda
+    ise istemcinin ya konak kısıtlamalarıdan geçmesi ya da geçerli bir kullanıcı
+    adı ve parolası girmesi gerekir. Bu seçenek, belli bir alana erişimi
+    parolayla kısıtlayıp, belli adreslerden gelen kullanıcılara parolasız erişim
+    vermek için kullanılabilir.</p>
+
+    <p>Örneğin, sitenizin belli bir bölümü için iç ağınızdan gelen isteklere
+    sınırsız erişim vermek ama dışardan gelen istekleri parolayla kısıtlamak
+    isterseniz şöyle bir yapılandırma kullanabilirsiniz:</p>
 
     <div class="example"><p><code>
       Require valid-user<br />
@@ -2640,7 +2780,9 @@ sınırlama getirir.</td></tr>
       Satisfy Any
     </code></p></div>
 
-    <p>2.0.51 sürümünden itibaren <code class="directive">Satisfy</code> yönergeleri <code class="directive"><a href="#limit">&lt;Limit&gt;</a></code> ve <code class="directive"><a href="#limitexcept">&lt;LimitExcept&gt;</a></code> bölümleri tarafından belli yöntemlerle kısıtlanmış olabilir.</p>
+    <p>2.0.51 sürümünden itibaren <code class="directive">Satisfy</code> yönergeleri
+    <code class="directive"><a href="#limit">&lt;Limit&gt;</a></code> ve <code class="directive"><a href="#limitexcept">&lt;LimitExcept&gt;</a></code> bölümleri tarafından
+    belli yöntemlerle kısıtlanmış olabilir.</p>
 
 <h3>Ayrıca bakınız:</h3>
 <ul>
@@ -2792,11 +2934,19 @@ kullanılacak konak adları için başka
 </table>
     <p><code class="directive">ServerName</code> yönergesi, sunucunun kendini
       betimlemekte kullanacağı şema, konak adı ve port değerlerini belirler.
-      Bu, yönlendirme URL’leri oluşturulurken kullanılır. Örneğin, HTTP
-      sunucusunun barındırıldığı makinenin ismi <code>falan.filan.dom</code>
-      olduğu halde makinenin bir de <code>www.filan.dom</code> diye bir de DNS
-      rumuzu varsa ve HTTP sunucunuzun bu rumuzla kendini özdeşleştirmesini
-      isterseniz bunu şöyle belirtebilirsiniz:</p>
+      Bu, yönlendirme URL’leri oluşturulurken kullanılır.</p>
+
+    <p>Buna ek olarak, <code class="directive">ServerName</code> yönergesi
+      <a href="../vhosts/name-based.html">isme dayali sanal konaklar</a>
+      kullanılması durumunda,  bir  sanal konağı tam olarak belirlemek için de
+      kullanlır (muhtemelen <code class="directive">ServerAlias</code> ile
+      birlikte).</p>
+
+    <p>Örneğin, HTTP sunucusunun barındırıldığı makinenin ismi
+      <code>falan.filan.dom</code> olduğu halde makinenin bir de
+      <code>www.filan.dom</code> diye bir de DNS rumuzu varsa ve HTTP
+      sunucunuzun bu rumuzla kendini özdeşleştirmesini isterseniz bunu şöyle
+      belirtebilirsiniz:</p>
 
     <div class="example"><p><code>
       ServerName www.filan.dom:80

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml.de
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml.de?rev=1041928&r1=1041927&r2=1041928&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml.de (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml.de Fri Dec  3 17:43:24 2010
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.de.xsl"?>
-<!-- English Revision: 167959:1040809 (outdated) -->
+<!-- English Revision: 167959:1041924 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml.ja
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml.ja?rev=1041928&r1=1041927&r2=1041928&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml.ja [utf-8] (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml.ja [utf-8] Fri Dec  3 17:43:24 2010
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" ?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.ja.xsl"?>
-<!-- English Revision: 608059:1040809 (outdated) -->
+<!-- English Revision: 608059:1041924 (outdated) -->
 
 <!--
  Licensed to the Apache Software Foundation (ASF) under one or more

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml.meta?rev=1041928&r1=1041927&r2=1041928&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml.meta (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml.meta Fri Dec  3 17:43:24 2010
@@ -11,6 +11,6 @@
     <variant>en</variant>
     <variant>fr</variant>
     <variant outdated="yes">ja</variant>
-    <variant outdated="yes">tr</variant>
+    <variant>tr</variant>
   </variants>
 </metafile>

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml.tr
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml.tr?rev=1041928&r1=1041927&r2=1041928&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml.tr [utf-8] (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/core.xml.tr [utf-8] Fri Dec  3 17:43:24 2010
@@ -1,7 +1,7 @@
 <?xml version="1.0"?>
 <!DOCTYPE modulesynopsis SYSTEM "../style/modulesynopsis.dtd">
 <?xml-stylesheet type="text/xsl" href="../style/manual.tr.xsl"?>
-<!-- English Revision: 1040809 -->
+<!-- English Revision: 1041924 -->
 <!-- =====================================================
  Translated by: Nilgün Belma Bugüner <nilgun belgeler.org>
    Reviewed by: Orhan Berent <berent belgeler.org>

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/directives.html.tr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/mod/directives.html.tr.utf8?rev=1041928&r1=1041927&r2=1041928&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/directives.html.tr.utf8 [utf-8] (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/directives.html.tr.utf8 [utf-8] Fri Dec  3 17:43:24 2010
@@ -207,7 +207,8 @@
 <li><a href="mod_negotiation.html#forcelanguagepriority">ForceLanguagePriority</a></li>
 <li><a href="core.html#forcetype">ForceType</a></li>
 <li><a href="mod_log_forensic.html#forensiclog">ForensicLog</a></li>
-<li><a href="mpm_common.html#gracefulshutdowntimeout" id="G" name="G">GracefulShutdownTimeout</a></li>
+<li><a href="core.html#gprofdir" id="G" name="G">GprofDir</a></li>
+<li><a href="mpm_common.html#gracefulshutdowntimeout">GracefulShutdownTimeout</a></li>
 <li><a href="mpm_common.html#group">Group</a></li>
 <li><a href="mod_headers.html#header" id="H" name="H">Header</a></li>
 <li><a href="mod_autoindex.html#headername">HeaderName</a></li>
@@ -294,6 +295,7 @@
 <li><a href="mod_authz_host.html#order">Order</a></li>
 <li><a href="mod_env.html#passenv" id="P" name="P">PassEnv</a></li>
 <li><a href="mpm_common.html#pidfile">PidFile</a></li>
+<li><a href="core.html#protocol">Protocol</a></li>
 <li><a href="mod_echo.html#protocolecho">ProtocolEcho</a></li>
 <li><a href="mod_proxy.html#proxy">&lt;Proxy&gt;</a></li>
 <li><a href="mod_proxy.html#proxybadheader">ProxyBadHeader</a></li>

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/mod_env.html.tr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/mod/mod_env.html.tr.utf8?rev=1041928&r1=1041927&r2=1041928&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/mod_env.html.tr.utf8 [utf-8] (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/mod_env.html.tr.utf8 [utf-8] Fri Dec  3 17:43:24 2010
@@ -26,7 +26,6 @@
 <a href="../ko/mod/mod_env.html" hreflang="ko" rel="alternate" title="Korean">&nbsp;ko&nbsp;</a> |
 <a href="../tr/mod/mod_env.html" title="Türkçe">&nbsp;tr&nbsp;</a></p>
 </div>
-<div class="outofdate">Bu çeviri güncel olmayabilir. Son değişiklikler için İngilizce sürüm geçerlidir.</div>
 <table class="module"><tr><th><a href="module-dict.html#Description">Açıklama:</a></th><td>CGI betiklerine ve SSI sayfalarına aktarılan değişkenlere
 müdahale etmek için kullanılır.</td></tr>
 <tr><th><a href="module-dict.html#Status">Durum:</a></th><td>Temel</td></tr>
@@ -34,9 +33,10 @@ müdahale etmek için kullanılır.</td>
 <tr><th><a href="module-dict.html#SourceFile">Kaynak Dosyası:</a></th><td>mod_env.c</td></tr></table>
 <h3>Özet</h3>
 
-    <p>Bu modül CGI betiklerine ve SSI sayfalarına aktarılan ortama müdahale
-      etmeyi mümkün kılar. Ortam değişkenleri <code class="program"><a href="../programs/httpd.html">httpd</a></code> süreci
-      başlatılırken kabuktan aktarılabilir. Bundan başka, yapılandırma
+    <p>Bu modül çeşitli Apache HTTP sunucu modülleri tarafından kullanılan dahili
+      ortam değişkenlerini denetim altına almak için kullanılır. Bu değişkenler
+      ayrıca CGI betiklerinde sistem ortam değişkenleri gibi belirtilebildiği
+      gibi SSI sayfalarında da kullanılabilmektedir. Bundan başka, yapılandırma
       sürecinde tanımlı veya tanımsız yapılabilirler.</p>
 </div>
 <div id="quickview"><h3 class="directives">Yönergeler</h3>
@@ -61,8 +61,10 @@ müdahale etmek için kullanılır.</td>
 <tr><th><a href="directive-dict.html#Status">Durum:</a></th><td>Temel</td></tr>
 <tr><th><a href="directive-dict.html#Module">Modül:</a></th><td>mod_env</td></tr>
 </table>
-    <p><code class="program"><a href="../programs/httpd.html">httpd</a></code> süreci başlatılırken CGI betiklerine ve SSI
-      sayfalarına kabuktan aktarılabilecek ortam değişkenleri belirtilir.</p>
+    <p><code class="program"><a href="../programs/httpd.html">httpd</a></code> süreci başlatılırken Apache HTTP sunucu
+      modüllerinde, CGI betiklerinde ve SSI sayfalarında dahili ortam
+      değişkenleri olarak kullanılmak üzere bazı sistem ortam değişkenlerini
+      belirtmek için kullanılır.</p>
 
     <div class="example"><h3>Örnek</h3><p><code>
       PassEnv LD_LIBRARY_PATH
@@ -79,8 +81,9 @@ müdahale etmek için kullanılır.</td>
 <tr><th><a href="directive-dict.html#Status">Durum:</a></th><td>Temel</td></tr>
 <tr><th><a href="directive-dict.html#Module">Modül:</a></th><td>mod_env</td></tr>
 </table>
-    <p>CGI betiklerine ve SSI sayfalarına aktarılmak üzere bir ortam değişkeni
-      tanımlanmasını sağlar.</p>
+    <p>Apache HTTP sunucu modüllerinde kullanılmak ve CGI betiklerine ve SSI
+      sayfalarına aktarılmak üzere bir ortam değişkeni belirtilebilmesini
+      sağlar.</p>
 
     <div class="example"><h3>Örnek</h3><p><code>
       SetEnv SPECIAL_PATH /foo/bin
@@ -89,11 +92,15 @@ müdahale etmek için kullanılır.</td>
     <div class="note"><p>Bu yönerge ile atanan dahili ortam değişkenleri, erişim denetimi ve
       URI'leri dosya isimleri ile eşleştirme gibi daha önceki istek işleme
       yönergelerinden <em>sonra</em> atanır. Eğer atayacağınız ortam
-      değikenlerinin <code class="directive"><a href="../mod/mod_rewrite.html#rewriterule">RewriteRule</a></code>
+      değişkenlerinin <code class="directive"><a href="../mod/mod_rewrite.html#rewriterule">RewriteRule</a></code>
       yönergelerindeki gibi erken dönem işlem aşamalarında etkili olmasını
       istiyorsanız bu ortam değişkenlerini <code class="directive"><a href="../mod/mod_setenvif.html#setenvif">SetEnvIf</a></code> yönergesi ile atamalısınız.</p>
     </div>
 
+<h3>Ayrıca bakınız:</h3>
+<ul>
+<li><a href="../env.html">Ortam Değişkenleri</a></li>
+</ul>
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="directive-section"><h2><a name="UnsetEnv" id="UnsetEnv">UnsetEnv</a> <a name="unsetenv" id="unsetenv">Yönergesi</a></h2>
@@ -106,8 +113,8 @@ müdahale etmek için kullanılır.</td>
 <tr><th><a href="directive-dict.html#Status">Durum:</a></th><td>Temel</td></tr>
 <tr><th><a href="directive-dict.html#Module">Modül:</a></th><td>mod_env</td></tr>
 </table>
-    <p>CGI betiklerine ve SSI sayfalarına bir daha aktarılmamak üzere bir ortam
-      değişkenini ortamdan siler.</p>
+    <p>CGI betiklerine ve SSI sayfalarına bir daha aktarılmamak üzere bir dahili
+      ortam değişkenini ortamdan siler.</p>
 
     <div class="example"><h3>Örnek</h3><p><code>
       UnsetEnv LD_LIBRARY_PATH

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/mod_env.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/mod/mod_env.xml.meta?rev=1041928&r1=1041927&r2=1041928&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/mod_env.xml.meta (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/mod_env.xml.meta Fri Dec  3 17:43:24 2010
@@ -10,6 +10,6 @@
     <variant>en</variant>
     <variant outdated="yes">ja</variant>
     <variant outdated="yes">ko</variant>
-    <variant outdated="yes">tr</variant>
+    <variant>tr</variant>
   </variants>
 </metafile>

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/mpm_common.html.tr.utf8
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/mod/mpm_common.html.tr.utf8?rev=1041928&r1=1041927&r2=1041928&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/mpm_common.html.tr.utf8 [utf-8] (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/mpm_common.html.tr.utf8 [utf-8] Fri Dec  3 17:43:24 2010
@@ -26,7 +26,6 @@
 <a href="../ja/mod/mpm_common.html" hreflang="ja" rel="alternate" title="Japanese">&nbsp;ja&nbsp;</a> |
 <a href="../tr/mod/mpm_common.html" title="Türkçe">&nbsp;tr&nbsp;</a></p>
 </div>
-<div class="outofdate">Bu çeviri güncel olmayabilir. Son değişiklikler için İngilizce sürüm geçerlidir.</div>
 <table class="module"><tr><th><a href="module-dict.html#Description">Açıklama:</a></th><td>Birden fazla Çok Süreçlilik Modülü (MPM) tarafından gerçeklenmiş
   yönergeler bütünü.</td></tr>
 <tr><th><a href="module-dict.html#Status">Durum:</a></th><td>MPM</td></tr></table>
@@ -501,6 +500,15 @@
         değişmesidir.</p>
     </div>
 
+    <div class="note"><h3>Öntanımlı Yapılandırma</h3>
+      <p>Öntanımlı (derleme sırasında atanan) değer (10000),  yapılandırmada
+        hiçbir <code class="directive">MaxRequestsPerChild</code> yönergesi bulunmadığı
+        durumda kullanılır. <em>Öntanımlı yapılandırma</em>,
+        "MaxRequestsPerChild 0" dahil pek çok öntanımlı yapılandırma yönergesi
+        içerir.</p>
+    </div>
+
+
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="directive-section"><h2><a name="MaxSpareThreads" id="MaxSpareThreads">MaxSpareThreads</a> <a name="maxsparethreads" id="maxsparethreads">Yönergesi</a></h2>
@@ -862,7 +870,7 @@
   değişir.</code></td></tr>
 <tr><th><a href="directive-dict.html#Context">Bağlam:</a></th><td>sunucu geneli</td></tr>
 <tr><th><a href="directive-dict.html#Status">Durum:</a></th><td>MPM</td></tr>
-<tr><th><a href="directive-dict.html#Module">Modül:</a></th><td><code class="module"><a href="../mod/mpm_netware.html">mpm_netware</a></code>, <code class="module"><a href="../mod/mpm_winnt.html">mpm_winnt</a></code>, <code class="module"><a href="../mod/worker.html">worker</a></code></td></tr>
+<tr><th><a href="directive-dict.html#Module">Modül:</a></th><td><code class="module"><a href="../mod/mpm_netware.html">mpm_netware</a></code>, <code class="module"><a href="../mod/mpm_winnt.html">mpm_winnt</a></code>, <code class="module"><a href="../mod/event.html">event</a></code>, <code class="module"><a href="../mod/worker.html">worker</a></code></td></tr>
 <tr><th><a href="directive-dict.html#Compatibility">Uyumluluk:</a></th><td>Apache 2.1 ve sonrasında mevcuttur.</td></tr>
 </table>
     <p><code class="directive">ThreadStackSize</code> yönergesi, istemci
@@ -889,11 +897,19 @@
         düşük bir değer atanmışsa çocuk süreç başına evre sayısının yüksek
         olduğu durumlarda bu yığıt yetmeyebilir. Böyle bir ayarlama sadece
         sunucunun öldüresiye denendiği dolayısıyla yığıt boyutlarının aşırı
-        zorlandığı deneme ortamlarında yapılmalıdır. Sunucu yapılandırmasında
-        yapılan bir değişiklik mevcut <code class="directive">ThreadStackSize</code>
-        ayarını geçersiz hale getirebilir.</li>
+        zorlandığı deneme ortamlarında yapılmalıdır. Gereken en küçük yığıt
+        boyutu kullanılan modüllerle sıkı sıkıya ilintilidir, fakat sunucu
+        yapılandırmasında yapılan bir değişiklik mevcut
+        <code class="directive">ThreadStackSize</code> ayarını geçersiz hale
+        getirebilir.</li>
     </ul>
 
+    <div class="note">Çocuk süreç başına evre sayısı çok yüksek olmadıkça
+      <code class="directive">ThreadStackSize</code> değerinin azaltılması önerilmez.
+      Bazı platformlarda (Linux dahil), 128000 değeri zaten çok düşüktür ve bazı
+      modüllerde çökmelere sebep olabilmektedir.</div>
+
+
 </div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="directive-section"><h2><a name="User" id="User">User</a> <a name="user" id="user">Yönergesi</a></h2>

Modified: httpd/httpd/branches/2.2.x/docs/manual/mod/mpm_common.xml.meta
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/docs/manual/mod/mpm_common.xml.meta?rev=1041928&r1=1041927&r2=1041928&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/docs/manual/mod/mpm_common.xml.meta (original)
+++ httpd/httpd/branches/2.2.x/docs/manual/mod/mpm_common.xml.meta Fri Dec  3 17:43:24 2010
@@ -10,6 +10,6 @@
     <variant outdated="yes">de</variant>
     <variant>en</variant>
     <variant outdated="yes">ja</variant>
-    <variant outdated="yes">tr</variant>
+    <variant>tr</variant>
   </variants>
 </metafile>