summaryrefslogtreecommitdiffabout
path: root/htdocs/index.chtml
Unidiff
Diffstat (limited to 'htdocs/index.chtml') (more/less context) (ignore whitespace changes)
-rw-r--r--htdocs/index.chtml46
1 files changed, 46 insertions, 0 deletions
diff --git a/htdocs/index.chtml b/htdocs/index.chtml
new file mode 100644
index 0000000..aa0979a
--- a/dev/null
+++ b/htdocs/index.chtml
@@ -0,0 +1,46 @@
1% html(); return; /* vim:set ft=sitecing: */
2%%derive layout = "/ancestry/layout.chtml";
3<%codemethod string title() %>
4 return "introduction";
5</%codemethod>
6<%method void content() %>
7 <h1>introduction to site-C-ing</h1>
8 <p>
9 This is a sample site, which is supposed to demonstrate <em>site-C-ing</em>
10 features. Since the <em>site-C-ing</em> is still at the early stages of
11 development or rather proof of concept, this site is also far from being
12 complete. I am planning to add more pages as the time permits, though.
13 </p>
14 <p>
15 Once you download and install <a
16 href="http://kin.klever.net/sitecing/">site-C-ing</a> you may wish to try
17 this sample site for yourself. The source is available from <a
18 href="http://kin.klever.net/sitecing/sources">the site-C-ing download
19 page</a>. After you download the source code, you should configure it using
20 the ever so popular <code>configure</code> script. It is likely that you will
21 want to pass the <code>--with-vhostname</code> option to configure to name
22 the apache virtual host.
23 </p>
24 <p>
25 The configure script will generate the apache vhost configuration for you,
26 which you can <code>Include</code> in the main apache configuration file.
27 </p>
28 <p class="note">
29 Note, that the configuration is tailored for apache 2.x. It is no problem to
30 get it working with apache 1.3.x, although I haven't tried and so I am not
31 sure if it will run out of the box (your patches are <a
32 href="mailto:sitecing-patches@klever.net">welcome</a>). Also note that you
33 will need <a href="http://fastcgi.com/">mod_fastcgi</a> apache module, which
34 is the only CGI-interface supported by the <em>site-C-ing</em> engine at the
35 moment.
36 </p>
37 <p>
38 Once you get it all done you will want to restart your apache and start the
39 <em>site-C-ing</em> fastcgi server by issuing the <code>make restart</code>
40 command.
41 </p>
42 <p>
43 Before you download it, you may wish to <a href="/sources" title="source
44 browser">examine the sources</a> to learn more about how it is done.
45 </p>
46</%method>