]> granicus.if.org Git - apache/commitdiff
This is a very brief document for people who are so new to this that
authorRich Bowen <rbowen@apache.org>
Fri, 20 Apr 2012 12:05:32 +0000 (12:05 +0000)
committerRich Bowen <rbowen@apache.org>
Fri, 20 Apr 2012 12:05:32 +0000 (12:05 +0000)
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.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1328340 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/getting-started.xml

index ff2671aa1d01fc454a983d54edb7b35abab6e569..053d207da13f6bc84bce6584eb174d2fc8490f51 100644 (file)
@@ -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>