At line 9 removed 2 lines. |
$Id: ssl-howto.html,v 1.2 2002/09/27 20:50:37 mraible Exp $ |
|
At line 10 added 3 lines. |
1.7.1 2006-11-16 Added default test certificate pass phrase |
1.7.0 2005-12-29 Added "unknown protocol" issue and solution |
1.6.9 2005-01-24 Added link to new Windows+Apache+SSL Tutorial |
At line 65 changed 1 line. |
<p>Version 1.6.7 (changelog: view source)</p> |
<p>Version 1.6.8 (changelog: view source)</p> |
At line 80 removed 1 line. |
|
At line 82 added 3 lines. |
|
%%note __NEW!__ (January 23, 2005) Chris Thompson has written an [an updated and simplified|http://www.thompsonbd.com/tutorials/apachessl.php] Apache+SSL HowTo for Windows.%% |
|
At line 178 changed 4 lines. |
You will have two choices: |
<ul> |
<li> |
compile the mod_ssl.so module from the latest sources, available at |
If you want to compile the mod_ssl.so module, you can use the latest |
sources, available at |
At line 185 changed 6 lines. |
for Apache 2.0.x. |
</li> |
<li> |
for Windows, get it already compiled from <a href="http://hunter.campbus.com/"> |
http://hunter.campbus.com/</a> (you will find there Apache 1.3 and 2.0 binaries with |
the corresponding mod_ssl.so module versions included), and binaries for Linux are |
for Apache 2.0.x.</p> |
<p>For Windows, the precompiled module is available at |
<a href="http://hunter.campbus.com/">http://hunter.campbus.com/</a> |
(where you will find there Apache 1.3 and 2.0 binaries with |
the corresponding mod_ssl.so module versions included), while binaries for Linux are |
At line 197 changed 1 line. |
Various ISVs provide free binaries in various projects such as |
Various ISVs provide free binaries for this module in various projects such as |
At line 245 changed 1 line. |
<p style="margin-left: 20px; font-style: italic; color: green"><strong> |
<p style="margin-left: 20px; font-style: italic; color: green"> |
At line 250 changed 1 line. |
Just look for a SpeedDial-type file displayed simply <code>openssl</code>.</strong></p> |
Just look for a SpeedDial-type file displayed simply as <code>openssl</code>.</p> |
At line 278 added 2 lines. |
<p><span class="highlight">__Note:__ The default pass phrase shipped with openssl.cnf is ''aaaa''.</span></p> |
|
At line 306 changed 1 line. |
<p>Add the following to the end of <code>httpd.conf</code>:</p> |
<p>Add the following to the end of <code>httpd.conf</code>: <span class="highlight">Make sure and change <b>www.my-server.dom</b> in the example below.</span></p> |
At line 492 added 4 lines. |
<p>Q: When trying to connect to https://www.myhost.com I kept getting an error about an unknown protocol. I could however connect to https://10.10.0.14 which is the local ip of the server. |
<br /><br /> |
A: Under the VirtualHost section you add to the httpd.conf, I had to change __<VirtualHost www.myhost.com:443>__ to __<VirtualHost _default_:443>__.Not sure why this had to be done in my case, but it works. |
|