[rs-commit] r123 - /rs-manual/trunk/src/site/xhtml5/installation.xhtml5
rs-commit at redwax.eu
rs-commit at redwax.eu
Sun Oct 27 18:30:28 CET 2019
Author: minfrin at redwax.eu
Date: Sun Oct 27 18:30:27 2019
New Revision: 123
Log:
Add initial docs for installation.
Added:
rs-manual/trunk/src/site/xhtml5/installation.xhtml5
Added: rs-manual/trunk/src/site/xhtml5/installation.xhtml5
==============================================================================
--- rs-manual/trunk/src/site/xhtml5/installation.xhtml5 (added)
+++ rs-manual/trunk/src/site/xhtml5/installation.xhtml5 Sun Oct 27 18:30:27 2019
@@ -0,0 +1,83 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE html>
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
+ <head>
+ <title>Compiling and Installing</title>
+ <meta name="description" content="How to compile and install the Redwax Server." />
+ </head>
+ <body>
+
+ <section class="spotlight style2 orient-right content-align-left image-position-left" id="introduction">
+ <div class="content null">
+ <h2>Compiling and Installing</h2>
+ <p>How to compile and install the Redwax Server.</p>
+ </div>
+ <div class="image">
+ <img src="images/candles-lightgreen.jpg" alt="" />
+ </div>
+ </section>
+
+ <section class="wrapper style1 align-center"
+ id="introduction">
+ <div class="content inner index align-left">
+
+ <section>
+ <header>
+ <h3>Prerequisites</h3>
+ </header>
+ <div class="content">
+ <p>
+ The Redwax server build requires a development environment
+ with the following headers present:
+ </p>
+ <table>
+ <tbody>
+ <tr>
+ <td>ANSI-C Compiler</td><td>An ANSI-C Compiler and Build System is required.</td>
+ </tr>
+ <tr>
+ <td>Apache HTTP server</td><td>Version 2.4.0 and above is supported.</td>
+ </tr>
+ <tr>
+ <td>OpenSSL</td><td>Version 1.0.0 and above is supported.</td>
+ </tr>
+ </tbody>
+ </table>
+ </div>
+ </section>
+
+ <section>
+ <header>
+ <h3>Compile from Source</h3>
+ </header>
+ <div class="content">
+ <p>
+ The <code>mod_ca</code> module must be built first, as each subsequent
+ modules depends on headers provided by this core module.
+ </p>
+ <p>
+ To compile from source, each module is built as follows:
+ </p>
+<pre><code><![CDATA[./configure --with-apxs=/usr/bin/apxs
+make
+make install
+]]></code></pre>
+ <p>
+ The <code>--with-apxs</code> parameter needs to point to the
+ <code>apxs</code> build script from the Apache httpd development
+ environment.
+ </p>
+ <p>
+ The destination paths are picked up from the <code>apxs</code>
+ script.
+ </p>
+ </div>
+ </section>
+
+ </div>
+ </section>
+
+
+ </body>
+</html>
+
More information about the rs-commit
mailing list