You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2012/04/20 14:05:32 UTC

svn commit: r1328340 - /httpd/httpd/trunk/docs/manual/getting-started.xml

Author: rbowen
Date: Fri Apr 20 12:05:32 2012
New Revision: 1328340

URL: http://svn.apache.org/viewvc?rev=1328340&view=rev
Log:
This is a very brief document for people who are so new to this that
they're not sure what to ask. It covers the bare minimum for getting a
web server running, and then points to other resources. Feedback
welcomed.

Modified:
    httpd/httpd/trunk/docs/manual/getting-started.xml

Modified: httpd/httpd/trunk/docs/manual/getting-started.xml
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/getting-started.xml?rev=1328340&r1=1328339&r2=1328340&view=diff
==============================================================================
--- httpd/httpd/trunk/docs/manual/getting-started.xml (original)
+++ httpd/httpd/trunk/docs/manual/getting-started.xml Fri Apr 20 12:05:32 2012
@@ -189,10 +189,37 @@ about them.</p>
 
 <section id="logs">
 <title>Log Files and Troubleshooting</title>
+<p>As an Apache HTTP Server administrator, your most valuable asset is
+the log files, and, in particular, the error log. Troubleshooting any
+problem without the error log is like driving with your eyes closed.</p>
+
+<p>The location of the error log is defined by the <directive
+module="core">ErrorLog</directive> directive, which may be set globally,
+or per virtual host. Entries in the error log tell you what went wrong,
+and when. They often also tell you how to fix it. Each error log message
+contains a error code, which you can search for online for even more
+detailed descriptions of how to address the problem. You can also
+configure your error log to contain a log ID which you can then
+correlate to an access log entry, so that you can determine what request
+caused the error condition.</p>
+
+<p>You can read more about logging in the <a href="logs.html">logs
+documentation</a>.</p>
 </section>
 
 <section id="other">
 <title>What Else Do I Need To Know?</title>
+<p>This document covers only the bare basics. We hope that this gets you
+started, but there are many other things that you might need to know.
+Here's a partial list of what you might be looking for:</p>
+
+<ul>
+<li><a href="howto/auth.html">Authentication and Authorization (password protecting resources)</a></li>
+<li><a href="howto/access.html">Access Control</a></li>
+<li><a href="ssl/ssl_howto.html">Setting up SSL</a></li>
+<li><a href="http://wiki.apache.org/httpd/FAQ">Frequently Asked Questions</a></li>
+</ul>
+
 </section>
 
 </manualpage>