Rebuild


git-svn-id: https://svn.apache.org/repos/asf/httpd/mod_fcgid/trunk@1724295 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/docs/manual/mod/mod_fcgid.html.en b/docs/manual/mod/mod_fcgid.html.en
index 40ce2a3..314f40b 100644
--- a/docs/manual/mod/mod_fcgid.html.en
+++ b/docs/manual/mod/mod_fcgid.html.en
@@ -105,6 +105,7 @@
 <h3>Topics</h3>
 <ul id="topics">
 <li><img alt="" src="../images/down.gif" /> <a href="#upgrade">Upgrade Notes</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#errordocuments">Fcgid and Apache ErrorDocument</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#examples">Examples</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#process-mgmt">Process Management</a></li>
 </ul><h3>See also</h3>
@@ -261,6 +262,22 @@
 
   </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
+<h2><a name="errordocuments" id="errordocuments">Fcgid and Apache ErrorDocument</a></h2>
+    
+    <p>The core directive <code class="directive"><a href="../mod/core.html#errordocument">ErrorDocument</a></code> allows the user to specify custom error pages
+       for specific HTTP error codes. An important note must be made: if the error 
+       page is generated by the fastcgi script, <code>mod_fcgid</code> will
+       pass the response down to the output filter chain bypassing the Apache's 
+       ErrorDocuments. Conversely, if the error is generated by Apache itself (for example, a HTTP 404
+       due to a missing resource) then the ErrorDocument set will be used. 
+       This behaviour is the most conservative one to interfere as little as
+       possible with the fastcgi's response generation logic. <code>mod_proxy</code> shows the same 
+       behaviour but it offers <code class="directive"><a href="../mod/mod_proxy.html#proxyerroroverride">ProxyErrorOverride</a></code> 
+       to force the use of ErrorDocuments, meanwhile <code>mod_fcgid</code> does not. 
+       A common workaround is to instruct the fcgi script to generate the ErrorDocuments
+       to have full control of the response content.</p>
+  </div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+<div class="section">
 <h2><a name="examples" id="examples">Examples</a></h2>
     
 
@@ -1312,10 +1329,10 @@
     }
 })(window, document);
 //--><!]]></script></div><div id="footer">
-<p class="apache">Copyright 2016 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
+<p class="apache">Copyright 2014 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
 <p class="menu"><a href="../mod/">Modules</a> | <a href="../mod/quickreference.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="../glossary.html">Glossary</a> | <a href="../sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
 if (typeof(prettyPrint) !== 'undefined') {
     prettyPrint();
 }
 //--><!]]></script>
-</body></html>
+</body></html>
\ No newline at end of file