[rs-commit] r315 - in /rs-manual/trunk/src/site/xhtml5/mod: mod_cert.xhtml5 mod_crl.xhtml5 mod_csr.xhtml5 mod_ocsp.xhtml5 mod_pkcs12.xhtml5 mod_pkcs7.xhtml5 mod_scep.xhtml5 mod_spkac.xhtml5 mod_timestamp.xhtml5
rs-commit at redwax.eu
rs-commit at redwax.eu
Wed Feb 26 22:30:10 CET 2020
Author: minfrin at redwax.eu
Date: Wed Feb 26 22:30:09 2020
New Revision: 315
Log:
Document handlers.
Modified:
rs-manual/trunk/src/site/xhtml5/mod/mod_cert.xhtml5
rs-manual/trunk/src/site/xhtml5/mod/mod_crl.xhtml5
rs-manual/trunk/src/site/xhtml5/mod/mod_csr.xhtml5
rs-manual/trunk/src/site/xhtml5/mod/mod_ocsp.xhtml5
rs-manual/trunk/src/site/xhtml5/mod/mod_pkcs12.xhtml5
rs-manual/trunk/src/site/xhtml5/mod/mod_pkcs7.xhtml5
rs-manual/trunk/src/site/xhtml5/mod/mod_scep.xhtml5
rs-manual/trunk/src/site/xhtml5/mod/mod_spkac.xhtml5
rs-manual/trunk/src/site/xhtml5/mod/mod_timestamp.xhtml5
Modified: rs-manual/trunk/src/site/xhtml5/mod/mod_cert.xhtml5
==============================================================================
--- rs-manual/trunk/src/site/xhtml5/mod/mod_cert.xhtml5 (original)
+++ rs-manual/trunk/src/site/xhtml5/mod/mod_cert.xhtml5 Wed Feb 26 22:30:09 2020
@@ -201,7 +201,7 @@
<section>
<header>
- <h3>cert-ca</h3>
+ <h3>cert-ca Handler</h3>
</header>
<div class="content">
<p>After calling the <a href="mod_ca.html#ca_getca">getca hook</a> return the CA certificate as a DER or PEM encoded X509 certificate.</p>
@@ -212,7 +212,7 @@
<section>
<header>
- <h3>cert-nextca</h3>
+ <h3>cert-nextca Handler</h3>
</header>
<div class="content">
<p>After calling the <a href="mod_ca.html#ca_getnextca">getnextca hook</a> return the next CA certificate as a DEM or PEN encoded X509 certificate.</p>
Modified: rs-manual/trunk/src/site/xhtml5/mod/mod_crl.xhtml5
==============================================================================
--- rs-manual/trunk/src/site/xhtml5/mod/mod_crl.xhtml5 (original)
+++ rs-manual/trunk/src/site/xhtml5/mod/mod_crl.xhtml5 Wed Feb 26 22:30:09 2020
@@ -147,6 +147,33 @@
<section class="wrapper style1 align-center"
+ id="handler-reference">
+ <div class="inner">
+ <h2>Handler Reference</h2>
+ <p>
+ The following parameters to the
+ <a href="http://httpd.apache.org/docs/2.4/mod/core.html#sethandler">SetHandler</a>
+ directive are supported.
+ </p>
+ <div class="index align-left">
+
+ <section>
+ <header>
+ <h3>crl Handler</h3>
+ </header>
+ <div class="content">
+ <p>After calling the <a href="mod_ca.html#ca_getcrl">getcrl hook</a> return the DER or PEM encoded certificate revocation list.</p>
+<pre><code><![CDATA[SetHandler crl
+]]></code></pre>
+ </div>
+ </section>
+
+ </div>
+ </div>
+ </section>
+
+
+ <section class="wrapper style1 align-center"
id="directive-reference">
<div class="inner">
<h2>Directive Reference</h2>
Modified: rs-manual/trunk/src/site/xhtml5/mod/mod_csr.xhtml5
==============================================================================
--- rs-manual/trunk/src/site/xhtml5/mod/mod_csr.xhtml5 (original)
+++ rs-manual/trunk/src/site/xhtml5/mod/mod_csr.xhtml5 Wed Feb 26 22:30:09 2020
@@ -290,6 +290,33 @@
<section class="wrapper style1 align-center"
+ id="handler-reference">
+ <div class="inner">
+ <h2>Handler Reference</h2>
+ <p>
+ The following parameters to the
+ <a href="http://httpd.apache.org/docs/2.4/mod/core.html#sethandler">SetHandler</a>
+ directive are supported.
+ </p>
+ <div class="index align-left">
+
+ <section>
+ <header>
+ <h3>csr Handler</h3>
+ </header>
+ <div class="content">
+ <p>After calling the <a href="mod_ca.html#ca_reqauthz">request authorization hook</a>, the <a href="mod_ca.html#ca_sign">sign request hook</a>, and the <a href="mod_ca.html#ca_certstore">certificate storage hook</a>, return the DER or PEM encoded certificate.</p>
+<pre><code><![CDATA[SetHandler csr
+]]></code></pre>
+ </div>
+ </section>
+
+ </div>
+ </div>
+ </section>
+
+
+ <section class="wrapper style1 align-center"
id="directive-reference">
<div class="inner">
<h2>Directive Reference</h2>
Modified: rs-manual/trunk/src/site/xhtml5/mod/mod_ocsp.xhtml5
==============================================================================
--- rs-manual/trunk/src/site/xhtml5/mod/mod_ocsp.xhtml5 (original)
+++ rs-manual/trunk/src/site/xhtml5/mod/mod_ocsp.xhtml5 Wed Feb 26 22:30:09 2020
@@ -178,6 +178,33 @@
<section class="wrapper style1 align-center"
+ id="handler-reference">
+ <div class="inner">
+ <h2>Handler Reference</h2>
+ <p>
+ The following parameters to the
+ <a href="http://httpd.apache.org/docs/2.4/mod/core.html#sethandler">SetHandler</a>
+ directive are supported.
+ </p>
+ <div class="index align-left">
+
+ <section>
+ <header>
+ <h3>ocsp Handler</h3>
+ </header>
+ <div class="content">
+ <p>After calling the <a href="mod_ca.html#ca_getcertstatus">certificate status hook</a> return the OCSP response.</p>
+<pre><code><![CDATA[SetHandler ocsp
+]]></code></pre>
+ </div>
+ </section>
+
+ </div>
+ </div>
+ </section>
+
+
+ <section class="wrapper style1 align-center"
id="directive-reference">
<div class="inner">
<h2>Directive Reference</h2>
Modified: rs-manual/trunk/src/site/xhtml5/mod/mod_pkcs12.xhtml5
==============================================================================
--- rs-manual/trunk/src/site/xhtml5/mod/mod_pkcs12.xhtml5 (original)
+++ rs-manual/trunk/src/site/xhtml5/mod/mod_pkcs12.xhtml5 Wed Feb 26 22:30:09 2020
@@ -360,6 +360,35 @@
</div>
</div>
</section>
+
+
+ <section class="wrapper style1 align-center"
+ id="handler-reference">
+ <div class="inner">
+ <h2>Handler Reference</h2>
+ <p>
+ The following parameters to the
+ <a href="http://httpd.apache.org/docs/2.4/mod/core.html#sethandler">SetHandler</a>
+ directive are supported.
+ </p>
+ <div class="index align-left">
+
+ <section>
+ <header>
+ <h3>pkcs12 Handler</h3>
+ </header>
+ <div class="content">
+ <p>After calling the <a href="mod_ca.html#ca_reqauthz">request authorization hook</a>, the <a href="mod_ca.html#ca_makekey">make key hook</a>, the <a href="mod_ca.html#ca_sign">sign request hook</a>, and the <a href="mod_ca.html#ca_certstore">certificate storage hook</a>, return the DER or PEM encoded certificate.</p>
+<pre><code><![CDATA[SetHandler pkcs12
+]]></code></pre>
+ </div>
+ </section>
+
+ </div>
+ </div>
+ </section>
+
+
<section class="wrapper style1 align-center" id="directive-reference">
<div class="inner">
<h2>Directive Reference</h2>
Modified: rs-manual/trunk/src/site/xhtml5/mod/mod_pkcs7.xhtml5
==============================================================================
--- rs-manual/trunk/src/site/xhtml5/mod/mod_pkcs7.xhtml5 (original)
+++ rs-manual/trunk/src/site/xhtml5/mod/mod_pkcs7.xhtml5 Wed Feb 26 22:30:09 2020
@@ -201,7 +201,7 @@
<section>
<header>
- <h3>pkcs7-ca</h3>
+ <h3>pkcs7-ca Handler</h3>
</header>
<div class="content">
<p>After calling the <a href="mod_ca.html#ca_getca">getca hook</a> return the CA certificate as a DER or PEM encoded degenerate PKCS7 certificate bundle.</p>
@@ -212,7 +212,7 @@
<section>
<header>
- <h3>pkcs7-nextca</h3>
+ <h3>pkcs7-nextca Handler</h3>
</header>
<div class="content">
<p>After calling the <a href="mod_ca.html#ca_getnextca">getnextca hook</a> return the next CA certificate as a DEM or PEN encoded degenerate PKCS7 certificate bundle.</p>
Modified: rs-manual/trunk/src/site/xhtml5/mod/mod_scep.xhtml5
==============================================================================
--- rs-manual/trunk/src/site/xhtml5/mod/mod_scep.xhtml5 (original)
+++ rs-manual/trunk/src/site/xhtml5/mod/mod_scep.xhtml5 Wed Feb 26 22:30:09 2020
@@ -403,6 +403,33 @@
<section class="wrapper style1 align-center"
+ id="handler-reference">
+ <div class="inner">
+ <h2>Handler Reference</h2>
+ <p>
+ The following parameters to the
+ <a href="http://httpd.apache.org/docs/2.4/mod/core.html#sethandler">SetHandler</a>
+ directive are supported.
+ </p>
+ <div class="index align-left">
+
+ <section>
+ <header>
+ <h3>scep Handler</h3>
+ </header>
+ <div class="content">
+ <p>After calling the <a href="mod_ca.html#ca_reqauthz">request authorization hook</a>, the <a href="mod_ca.html#ca_sign">sign request hook</a>, and the <a href="mod_ca.html#ca_certstore">certificate storage hook</a>, issue and return the certificate using the SCEP protocol.</p>
+<pre><code><![CDATA[SetHandler scep
+]]></code></pre>
+ </div>
+ </section>
+
+ </div>
+ </div>
+ </section>
+
+
+ <section class="wrapper style1 align-center"
id="directive-reference">
<div class="inner">
<h2>Directive Reference</h2>
Modified: rs-manual/trunk/src/site/xhtml5/mod/mod_spkac.xhtml5
==============================================================================
--- rs-manual/trunk/src/site/xhtml5/mod/mod_spkac.xhtml5 (original)
+++ rs-manual/trunk/src/site/xhtml5/mod/mod_spkac.xhtml5 Wed Feb 26 22:30:09 2020
@@ -280,6 +280,33 @@
<section class="wrapper style1 align-center"
+ id="handler-reference">
+ <div class="inner">
+ <h2>Handler Reference</h2>
+ <p>
+ The following parameters to the
+ <a href="http://httpd.apache.org/docs/2.4/mod/core.html#sethandler">SetHandler</a>
+ directive are supported.
+ </p>
+ <div class="index align-left">
+
+ <section>
+ <header>
+ <h3>spkac Handler</h3>
+ </header>
+ <div class="content">
+ <p>After calling the <a href="mod_ca.html#ca_reqauthz">request authorization hook</a>, the <a href="mod_ca.html#ca_sign">sign request hook</a>, and the <a href="mod_ca.html#ca_certstore">certificate storage hook</a>, return the DER encoded certificate.</p>
+<pre><code><![CDATA[SetHandler spkac
+]]></code></pre>
+ </div>
+ </section>
+
+ </div>
+ </div>
+ </section>
+
+
+ <section class="wrapper style1 align-center"
id="directive-reference">
<div class="inner">
<h2>Directive Reference</h2>
Modified: rs-manual/trunk/src/site/xhtml5/mod/mod_timestamp.xhtml5
==============================================================================
--- rs-manual/trunk/src/site/xhtml5/mod/mod_timestamp.xhtml5 (original)
+++ rs-manual/trunk/src/site/xhtml5/mod/mod_timestamp.xhtml5 Wed Feb 26 22:30:09 2020
@@ -271,6 +271,35 @@
</div>
</div>
</section>
+
+
+ <section class="wrapper style1 align-center"
+ id="handler-reference">
+ <div class="inner">
+ <h2>Handler Reference</h2>
+ <p>
+ The following parameters to the
+ <a href="http://httpd.apache.org/docs/2.4/mod/core.html#sethandler">SetHandler</a>
+ directive are supported.
+ </p>
+ <div class="index align-left">
+
+ <section>
+ <header>
+ <h3>timestamp Handler</h3>
+ </header>
+ <div class="content">
+ <p>After calling the <a href="mod_ca.html#ca_makeserial">make serial hook</a>, and the <a href="mod_ca.html#ca_gettime">get time hook</a>, return the time stamped response.</p>
+<pre><code><![CDATA[SetHandler timestamp
+]]></code></pre>
+ </div>
+ </section>
+
+ </div>
+ </div>
+ </section>
+
+
<section class="wrapper style1 align-center" id="directive-reference">
<div class="inner">
<h2>Directive Reference</h2>
More information about the rs-commit
mailing list