Chào mọi người tôi làm cấu hình SSl + apache(https) theo hướng dẫn trên trang chủ của CenOS
http://wiki.centos.org/HowTos/Https
Các bước làm như sau.
1. Getting the required software
Code:
yum install mod_ssl openssl
====> Okay.
2. Generate a self-signed certificate
# Generate private key
Code:
openssl genrsa -out ca.key 1024
# Generate CSR
Code:
openssl req -new -key ca.key -out ca.csr
# Generate Self Signed Key
Code:
openssl x509 -req -days 365 -in ca.csr -signkey ca.key -out ca.crt
# Move the files to the correct locations
Code:
mv ca.crt /etc/pki/tls/certs
mv ca.key /etc/pki/tls/private/ca.key
mv ca.csr /etc/pki/tls/private/ca.csr
====> Okay.
Chỉnh file SSL
Code:
/etc/httpd/conf.d/ssl.conf
Thêm vào 2 dòng sau.
Code:
SSLCertificateFile /etc/pki/tls/certs/ca.crt
SSLCertificateKeyFile /etc/pki/tls/private/ca.key
Sau đó restart lại httpd, nhưng khi mình khởi động lại thì ssl nó không chạy
https://mywed.com
Anh em có kinh nghiem debug thử coi lỗi ở đâu.