self-signed wildcard SSL certificate
Creating certificate change kutukupret.com to whatever your domain name is
# mkdir /usr/share/ssl/certs/hostname.kutukupret.com # cd /usr/share/ssl/certs/hostname.kutukupret.com (umask 077 && touch host.key host.cert host.info host.pem) # openssl genrsa 2048 > host.key # openssl req -new -x509 -nodes -sha1 -days 3650 -key host.key > host.cert ...[enter *.kutukupret.com for the Common Name]... # openssl x509 -noout -fingerprint -text < host.cert > host.info # cat host.cert host.key > host.pem # chmod 400 host.key host.pem
In apache
SSLEngine on SSLCertificateFile /path/to/host.cert SSLCertificateKeyFile /path/to/host.key SSLProtocol all SSLCipherSuite HIGH:MEDIUM
















