Tags: ssl

Sort by: Date / Title /

  1. 3 months ago by spirit
    quick tutorial
    1. # Enable ssl
    2. a2enmod ssl
    3.  
    4. # Edit /etc/apache2/ports.conf and add "Listen 443"
    5.  
    6. # Generate certs: use your domain as Common Name or *.domain.tld for multiple domains
    7. openssl req -x509 -nodes -days 365 -newkey rsa:1024 -out /etc/apache2/server.crt -keyout /etc/apache2/server.key
    8.  
    9. # In the virtualhost, use the following code:
    10. <VirtualHost 192.168.0.1:443>
    11.         SSLEngine On
    12.         SSLCertificateFile /etc/apache2/server.crt
    13.         SSLCertificateKeyFile /etc/apache2/server.key
    14. </VirtualHost>
    15.  
    16. # Reload apache2
    17. /etc/init.d/apache2 reload
  2. 7 months ago by skanx
    $ 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.
  3. 9 months ago by skanx and saved by 1 other
    quick & dirty...
    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.
  4. sponsorised links

First / Previous / Next / Last / Page 1 of 1 (3 posteets)