]> granicus.if.org Git - apache/commitdiff
Adds an example of how to set up SSL to the SSL howto. Seems like an
authorRich Bowen <rbowen@apache.org>
Thu, 4 Nov 2010 15:21:24 +0000 (15:21 +0000)
committerRich Bowen <rbowen@apache.org>
Thu, 4 Nov 2010 15:21:24 +0000 (15:21 +0000)
obvious omission.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1031028 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/ssl/ssl_howto.html.en
docs/manual/ssl/ssl_howto.xml

index 773f6fd991ab9c16dacae7b4d17c1e0e5ba7c514..ad15f9ed5d53f243164a2c9f0d30ba60d5500f96 100644 (file)
@@ -37,12 +37,31 @@ step to find out the final solution, but always try to understand the
 stuff before you use it. Nothing is worse than using a security solution
 without knowing its restrictions and how it interacts with other systems.</p>
 </div>
-<div id="quickview"><ul id="toc"><li><img alt="" src="../images/down.gif" /> <a href="#ciphersuites">Cipher Suites and Enforcing Strong Security</a></li>
+<div id="quickview"><ul id="toc"><li><img alt="" src="../images/down.gif" /> <a href="#configexample">Basic Configuration Example</a></li>
+<li><img alt="" src="../images/down.gif" /> <a href="#ciphersuites">Cipher Suites and Enforcing Strong Security</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#accesscontrol">Client Authentication and Access Control</a></li>
 <li><img alt="" src="../images/down.gif" /> <a href="#logging">Logging</a></li>
 </ul></div>
 <div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
 <div class="section">
+<h2><a name="configexample" id="configexample">Basic Configuration Example</a></h2>
+
+
+<p>Your SSL configuration will need to contain, at a minumum, the
+following directives.</p>
+
+<div class="example"><p><code>
+   Listen 443
+   &lt;VirtualHost _default_:443&gt;<br />
+        ServerName www.domain.com<br />
+        SSLEngine on<br />
+        SSLCertificateFile /path/to/www.comain.com.cert<br />
+        SSLCertificateKeyFile /path/to/www.domain.com.key<br />
+   &lt;/VirtualHost&gt;
+</code></p></div>
+
+</div><div class="top"><a href="#page-header"><img alt="top" src="../images/up.gif" /></a></div>
+<div class="section">
 <h2><a name="ciphersuites" id="ciphersuites">Cipher Suites and Enforcing Strong Security</a></h2>
 
 <ul>
index 512622a5b080ceb4db7d726578afdd38f9872890..bc8bd387431ca21709d7c5f3646a100049a9308c 100644 (file)
@@ -42,6 +42,24 @@ stuff before you use it. Nothing is worse than using a security solution
 without knowing its restrictions and how it interacts with other systems.</p>
 </summary>
 
+<section id="configexample">
+<title>Basic Configuration Example</title>
+
+<p>Your SSL configuration will need to contain, at a minumum, the
+following directives.</p>
+
+<example>
+   Listen 443
+   &lt;VirtualHost _default_:443&gt;<br />
+        ServerName www.domain.com<br />
+        SSLEngine on<br />
+        SSLCertificateFile /path/to/www.comain.com.cert<br />
+        SSLCertificateKeyFile /path/to/www.domain.com.key<br />
+   &lt;/VirtualHost&gt;
+</example>
+
+</section>
+
 <section id="ciphersuites">
 <title>Cipher Suites and Enforcing Strong Security</title>
 <ul>