[Yanel-commits] rev 20215 - in public/yanel/trunk/src/realms/yanel-website/content/documentation: . ssl

michi at wyona.com michi at wyona.com
Wed Nov 22 15:04:11 CET 2006


Author: michi
Date: 2006-11-22 15:04:10 +0100 (Wed, 22 Nov 2006)
New Revision: 20215

Added:
   public/yanel/trunk/src/realms/yanel-website/content/documentation/ssl/
   public/yanel/trunk/src/realms/yanel-website/content/documentation/ssl/en.xhtml
Log:
content added

Added: public/yanel/trunk/src/realms/yanel-website/content/documentation/ssl/en.xhtml
===================================================================
--- public/yanel/trunk/src/realms/yanel-website/content/documentation/ssl/en.xhtml	2006-11-22 14:03:47 UTC (rev 20214)
+++ public/yanel/trunk/src/realms/yanel-website/content/documentation/ssl/en.xhtml	2006-11-22 14:04:10 UTC (rev 20215)
@@ -0,0 +1,41 @@
+<?xml version="1.0"?>
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+  <title>How a request is being processed</title>
+</head>
+<body>
+<h1>Install Apache-Httpd with SSL</h1>
+<ul>
+<li>Install Apache-Httpd with SSL support 
+  <ul>
+       <li>Download <a href="http://www.openssl.org">Open-SSL</a> version 0.9.8d or higher<br/></li>
+       <li>Build Open-SSL
+       <ul>
+         <li>./config</li>
+         <li>make</li>
+         <li>make install (will install at /usr/local/ssl by default, see INSTALL file for more details)</li>
+       </ul></li>
+       <li>Test Open-SSL installation by typing "/usr/local/ssl/bin/openssl version"</li>
+       <li>Download <a href="http://httpd.apache.org">Apache-Httpd</a> version 2.2.3 or higher</li>
+       <li>Build Apache-Httpd with SSL
+         <ul>
+       <li>./configure --enable-ssl=shared --with-ssl=/usr/local/ssl --enable-proxy --enable-proxy-http<br/></li>
+       <li>make</li>
+       <li>make install (will install at /usr/local/apache2, see INSTALL file for more details)<br/></li>
+         </ul></li>
+       <li>Create SSL-Key
+         <ul>
+           <li>openssl genrsa 1024 > /usr/local/apache2/conf/server.key</li>
+           <li>openssl req -new -x509 -nodes -sha1 -days 365 -key /usr/local/apache2/conf/server.key > /usr/local/apache2/conf/server.crt</li>
+         </ul></li>
+       <li>Uncomment SSL config within /usr/local/apache2/conf/httpd.conf (Include conf/extra/httpd-ssl.conf)</li>
+       <li>Startup Apache: /usr/local/apache2/bin/apachectl start</li>
+       <li>Test SSL: https://127.0.0.1:80</li>
+  </ul>
+</li>
+</ul>
+</body>
+</html>




More information about the Yanel-commits mailing list