Moved apache code into a folder to help prepare for packaging where we dont want...
[httpd-crcsyncproxy.git] / apache / docs / manual / howto / index.xml
blobd7d79b4977077bab7854dc6b57fa9c89bc78d145
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
3 <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
4 <!-- $LastChangedRevision$ -->
6 <!--
7  Licensed to the Apache Software Foundation (ASF) under one or more
8  contributor license agreements.  See the NOTICE file distributed with
9  this work for additional information regarding copyright ownership.
10  The ASF licenses this file to You under the Apache License, Version 2.0
11  (the "License"); you may not use this file except in compliance with
12  the License.  You may obtain a copy of the License at
14      http://www.apache.org/licenses/LICENSE-2.0
16  Unless required by applicable law or agreed to in writing, software
17  distributed under the License is distributed on an "AS IS" BASIS,
18  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  See the License for the specific language governing permissions and
20  limitations under the License.
21 -->
23 <manualpage metafile="index.xml.meta">
24   <parentdocument href="../"/>
26   <title>How-To / Tutorials</title>
28   <section id="howto">
30     <title>How-To / Tutorials</title>
32     <dl>
33       <dt>Authentication and Authorization</dt>
34       <dd>
35         <p>Authentication is any process by which you verify that
36         someone is who they claim they are. Authorization is any
37         process by which someone is allowed to be where they want to
38         go, or to have information that they want to have.</p>
40         <p>See: <a href="auth.html">Authentication, Authorization</a></p>
41       </dd>
42     </dl>
44     <dl>
45       <dt>Access Control</dt>
46       <dd>
47         <p>Access control refers to the process of restricting, or
48         granting access to a resource based on arbitrary criteria. There
49         are a variety of different ways that this can be
50         accomplished.</p>
52         <p>See: <a href="access.html">Access Control</a></p>
53       </dd>
54     </dl>
56    <dl>
57       <dt>Dynamic Content with CGI</dt>
58       <dd>
59         <p>The CGI (Common Gateway Interface) defines a way for a web
60         server to interact with external content-generating programs,
61         which are often referred to as CGI programs or CGI scripts. It
62         is the simplest, and most common, way to put dynamic content on
63         your web site. This document will be an introduction to setting
64         up CGI on your Apache web server, and getting started writing
65         CGI programs.</p>
67         <p>See: <a href="cgi.html">CGI: Dynamic Content</a></p>
68       </dd>
69     </dl>
71     <dl>
72       <dt><code>.htaccess</code> files</dt>
73       <dd>
74         <p><code>.htaccess</code> files provide a way to make configuration
75         changes on a per-directory basis. A file, containing one or more
76         configuration directives, is placed in a particular document directory,
77         and the directives apply to that directory, and all subdirectories thereof.</p>
79         <p>See: <a href="htaccess.html"><code>.htaccess</code> files</a></p>
80       </dd>
81     </dl>
83     <dl>
84       <dt>Introduction to Server Side Includes</dt>
85       <dd>
86         <p>SSI (Server Side Includes) are directives that are placed in
87         HTML pages, and evaluated on the server while the pages are
88         being served. They let you add dynamically generated content to
89         an existing HTML page, without having to serve the entire page
90         via a CGI program, or other dynamic technology.</p>
92         <p>See: <a href="ssi.html">Server Side Includes (SSI)</a></p>
93       </dd>
94     </dl>
96     <dl>
97       <dt>Per-user web directories</dt>
98       <dd>
99         <p>On systems with multiple users, each user can be permitted to have a
100         web site in their home directory using the <directive
101         module="mod_userdir">UserDir</directive> directive. Visitors
102         to a URL <code>http://example.com/~username/</code> will get content
103         out of the home directory of the user "<code>username</code>", out of
104         the subdirectory specified by the <directive
105         module="mod_userdir">UserDir</directive> directive.</p>
107         <p>See: <a href="public_html.html"
108         >User web directories (<code>public_html</code>)</a></p>
109       </dd>
110     </dl>
112   </section>
114 </manualpage>