author | Michael Krelin <hacker@klever.net> | 2005-01-30 00:57:53 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2005-01-30 00:57:53 (UTC) |
commit | 71f4cc84c3788c6904ede17cd626a9ca9c349e3b (patch) (side-by-side diff) | |
tree | cfe7736ae3416ad314b7451b756e587335c357c7 /htdocs/index.chtml | |
parent | acd2a536dd6bb3ef9438482725f77ac9044ae79b (diff) | |
download | sitecing-71f4cc84c3788c6904ede17cd626a9ca9c349e3b.zip sitecing-71f4cc84c3788c6904ede17cd626a9ca9c349e3b.tar.gz sitecing-71f4cc84c3788c6904ede17cd626a9ca9c349e3b.tar.bz2 |
initial commit into repository
-rw-r--r-- | htdocs/index.chtml | 46 |
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 @@ +% html(); return; /* vim:set ft=sitecing: */ +%%derive layout = "/ancestry/layout.chtml"; +<%codemethod string title() %> + return "introduction"; +</%codemethod> +<%method void content() %> + <h1>introduction to site-C-ing</h1> + <p> + This is a sample site, which is supposed to demonstrate <em>site-C-ing</em> + features. Since the <em>site-C-ing</em> is still at the early stages of + development or rather proof of concept, this site is also far from being + complete. I am planning to add more pages as the time permits, though. + </p> + <p> + Once you download and install <a + href="http://kin.klever.net/sitecing/">site-C-ing</a> you may wish to try + this sample site for yourself. The source is available from <a + href="http://kin.klever.net/sitecing/sources">the site-C-ing download + page</a>. After you download the source code, you should configure it using + the ever so popular <code>configure</code> script. It is likely that you will + want to pass the <code>--with-vhostname</code> option to configure to name + the apache virtual host. + </p> + <p> + The configure script will generate the apache vhost configuration for you, + which you can <code>Include</code> in the main apache configuration file. + </p> + <p class="note"> + Note, that the configuration is tailored for apache 2.x. It is no problem to + get it working with apache 1.3.x, although I haven't tried and so I am not + sure if it will run out of the box (your patches are <a + href="mailto:sitecing-patches@klever.net">welcome</a>). Also note that you + will need <a href="http://fastcgi.com/">mod_fastcgi</a> apache module, which + is the only CGI-interface supported by the <em>site-C-ing</em> engine at the + moment. + </p> + <p> + Once you get it all done you will want to restart your apache and start the + <em>site-C-ing</em> fastcgi server by issuing the <code>make restart</code> + command. + </p> + <p> + Before you download it, you may wish to <a href="/sources" title="source + browser">examine the sources</a> to learn more about how it is done. + </p> +</%method> |