Installer un certificat sur un serveur de dev

pas pour simple Hosting

http://groups.gandi.net/fr/topic/gandi.fr.ssl/38881

Il a suivi la procédure http://wiki.gandi.net/fr/hosting/using-linux/tutorials/ubuntu/ssl mais a un message en https: «Website temporarily unavilable.» ; avec site en http OK. Il a mis clef privée et pem en  /etc/ssl/private/xxx.tld.key (avec liens symboliques).

sa conf apache ssl: cat /etc/apache2/sites-enabled/default-ssl.conf
<IfModule mod_ssl.c>
    <VirtualHost _default_:443>
        ServerAdmin    xxx@xxx.tld
        DocumentRoot    /var/www/html
        ServerName    www.xxx.tld
        ServerAlias    xxx.tld
            CustomLog ${APACHE_LOG_DIR}/ssl_access.log combined
        SSLEngine on
        SSLCertificateFile    /etc/ssl/certs/xxx.tld.pem    
        SSLCertificateKeyFile    /etc/ssl/private/xxx.tld.key
        SSLCertificateChainFile    /etc/ssl/certs/GandiStandardSSLCA2.pem
        SSLVerifyClient    none
        <FilesMatch "\.(cgi|shtml|phtml|php)$">
                SSLOptions +StdEnvVars
        </FilesMatch>
        <Directory /usr/lib/cgi-bin>
                SSLOptions +StdEnvVars
        </Directory>
        BrowserMatch "MSIE [2-6]" \
                nokeepalive ssl-unclean-shutdown \
                downgrade-1.0 force-response-1.0
        BrowserMatch "MSIE [17-9]" ssl-unclean-shutdown
    </VirtualHost>
</IfModule>
                <Directory />
                        Options FollowSymLinks
                        AllowOverride All
                </Directory>
                <Directory /var/www/html>
                        Options Indexes FollowSymLinks MultiViews
                        AllowOverride All
                        Order allow,deny
                        allow from all
                </Directory>

 

logo drush