<?xml version="1.0" encoding="UTF-8" ?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Posteet: ssl</title> 
    <link>http://www.posteet.com/</link> 
    <description>Recent posteets posted to Posteet</description>
    <ttl>60</ttl>

    
    <item>
        <title>Configurer un serveur local (sous Wamp) pour un accès en https (SSL)</title>
        <link>http://www.posteet.com/view/1351</link>
        <description>
        <![CDATA[<pre>Dans un premier temps, suivre le tutoriel qui figure à cette adresse :
http://apache.developpez.com/cours/apache20-modssl-windows/

Regénérer la clé sans RSA (sinon message d'erreur &quot;SSLPassPhraseDialog builtin is not supported on Win32&quot;) en ligne de commande (il faut d'abord faire une copie de la clé, ici : nom_du_serveur.key.org) :
openssl rsa -in C:\&quot;Program Files&quot;\wamp\bin\apache\apache2.2.6\conf\ssl\nom_du_serveur.key.org -out C:\&quot;Program Files&quot;\wamp\bin\apache\apache2.2.6\conf\ssl\nom_du_serveur.key
Voir http://www.entrust.net/knowledge-base/technote.cfm?tn=5634 pour les détails.

Il faut paramétrer le VirtualHost du serveur concerné dans le fichier httpd-ssl.conf.
En cas d'erreur, les logs se trouvent dans C:\Program Files\wamp\logs\apache_error.log</pre> <a href="http://www.posteet.com/tags/apache">[apache]</a>  <a href="http://www.posteet.com/tags/configuration">[configuration]</a>  <a href="http://www.posteet.com/tags/https">[https]</a>  <a href="http://www.posteet.com/tags/ssl">[ssl]</a>  <a href="http://www.posteet.com/tags/wamp">[wamp]</a>  <a href="http://www.posteet.com/tags/windows">[windows]</a> ]]>        </description>
        <dc:creator>cyo</dc:creator>
        <pubDate>Mon, 03 Nov 2008 11:05:53 +0000</pubDate>

            <category>apache</category>
            <category>configuration</category>
            <category>https</category>
            <category>ssl</category>
            <category>wamp</category>
            <category>windows</category>
    
    </item>

  
    <item>
        <title>Enable SSL in apache2 on Debian Etch</title>
        <link>http://www.posteet.com/view/1037</link>
        <description>
        <![CDATA[<pre># Enable ssl
a2enmod ssl

# Edit /etc/apache2/ports.conf and add &quot;Listen 443&quot;

# Generate certs: use your domain as Common Name or *.domain.tld for multiple domains
openssl req -x509 -nodes -days 365 -newkey rsa:1024 -out /etc/apache2/server.crt -keyout /etc/apache2/server.key

# In the virtualhost, use the following code:
&lt;VirtualHost 192.168.0.1:443&gt;
        SSLEngine On
        SSLCertificateFile /etc/apache2/server.crt
        SSLCertificateKeyFile /etc/apache2/server.key
&lt;/VirtualHost&gt;

# Reload apache2
/etc/init.d/apache2 reload</pre> <a href="http://www.posteet.com/tags/apache2">[apache2]</a>  <a href="http://www.posteet.com/tags/debian">[debian]</a>  <a href="http://www.posteet.com/tags/openssl">[openssl]</a>  <a href="http://www.posteet.com/tags/ssl">[ssl]</a>  <a href="http://www.posteet.com/tags/virtualhost">[virtualhost]</a> ]]>        </description>
        <dc:creator>spirit</dc:creator>
        <pubDate>Thu, 03 Jul 2008 19:46:21 +0000</pubDate>

            <category>apache2</category>
            <category>debian</category>
            <category>openssl</category>
            <category>ssl</category>
            <category>virtualhost</category>
    
    </item>

  
    <item>
        <title>Convert a pkcs12 to pem (ca crt, crt, key)</title>
        <link>http://www.posteet.com/view/769</link>
        <description>
        <![CDATA[<pre>$ openssl pkcs12 -in pkcs12file.p12 -out pemfile.pem
(by default, pkcs12 will ask for an import password, to decrypt the p12 file (just press Enter if you don't have a password), and finally a passphrase to encrypt your key)

pemfile.pem now contains your CA certificate, your client certificate, and your (encrypted) key.</pre> <a href="http://www.posteet.com/tags/ssl">[ssl]</a> ]]>        </description>
        <dc:creator>skanx</dc:creator>
        <pubDate>Mon, 18 Feb 2008 12:26:05 +0000</pubDate>

            <category>ssl</category>
    
    </item>

  
    <item>
        <title>Quickly generate a self-signed SSL certificate for Apache</title>
        <link>http://www.posteet.com/view/648</link>
        <description>
        <![CDATA[<pre>openssl req -new -x509 -days 365 -nodes -out /etc/apache2/ssl/apache.pem -keyout /etc/apache2/ssl/apache.pem

hint: to generate a wildcard certificate for multiple name-based virtualhosts, use *.domain.tld as the common name.</pre> <a href="http://www.posteet.com/tags/apache">[apache]</a>  <a href="http://www.posteet.com/tags/ssl">[ssl]</a> ]]>        </description>
        <dc:creator>skanx</dc:creator>
        <pubDate>Thu, 03 Jan 2008 15:22:21 +0000</pubDate>

            <category>apache</category>
            <category>ssl</category>
    
    </item>


</channel>
</rss>
