First clarify that you'll need new IP address for every new site, with SSL enabled.
So here is a quick checklist:
- add the extra IP addresses to your Windows
- make sure Apache listens on these addresses
- change the dns record of the domains (point www and A record to the new IPs)
- generate .KEY and .CSR files (described earlier)
- when received .CRT file, copy all to the directory on your server, where the earlier .CRT and .KEY files are located
- modify httpd.conf to include a new shttpd-vhosts.conf file and add the following for each domain:
<VirtualHost IP address:443>
ServerName www.domain name
ServerAlias domain name
SSLEngine On
SSLCertificateFile conf/ssl/domain name.crt
SSLCertificateKeyFile conf/ssl/domain name.key
DocumentRoot "your path"
</VirtualHost>
Add it should be working fine!
0 comments:
Post a Comment