openssl req -new -newkey rsa:2048 -nodes -keyout esoftplay.com.key -out esoftplay.com.csr
ketika memasukkan CN (Common Name) nanti anda harus memasukkan domain nya yaitu untuk kasus ini esoftplay.com
openssl x509 -req -days 36500 -in esoftplay.com.csr -signkey esoftplay.com.key -out esoftplay.com.crt
openssl x509 -req -in esoftplay.com.csr -CA esoftplay.com.crt -CAkey esoftplay.com.key -CAcreateserial -out esoftplay.com.ca.crt
maka anda bisa meng-upload file esoftplay.com.crt pada field "certificate" pada form set Webhook
apachectl -M | sort
yum install mod_ssl
a2enmod ssl
, atau aktifkan module:
<VirtualHost *:443>
DocumentRoot "/path/to/esoftplay/com"
ServerName esoftplay.com
SSLEngine on
SSLProtocol all -SSLv2 -SSLv3
SSLCertificateFile "/path/to/esoftplay.com.crt"
SSLCertificateKeyFile "/path/to/esoftplay.com.key"
# SSLCACertificateFile /"/path/to/esoftplay.com.ca.crt"
</VirtualHost>