I got it. The issue was that I was using an asterisk in the virtualhost block 
instead of the IP address. I understood that the IP address would be required 
for multiple (and yes, I am planning on multiple), but since I had only gotten 
to the first thus far, I thought it would work.

I changed this…

<VirtualHost *:443>
   DocumentRoot /path/to/htdocs
   ServerName www.example.com
   ServerAlias example.com

   SSLEngine on
   SSLCertificateFile /some/path/www.example.com.crt
   SSLCertificateKeyFile /some/path/www.example.com.key
   SSLCertificateChainFile /some/path/PositiveSSL.ca-bundle
</VirtualHost>


…to this…

<VirtualHost 111.111.111.111:443>
   DocumentRoot /path/to/htdocs
   ServerName www.example.com
   ServerAlias example.com

   SSLEngine on
   SSLCertificateFile /some/path/www.example.com.crt
   SSLCertificateKeyFile /some/path/www.example.com.key
   SSLCertificateChainFile /some/path/PositiveSSL.ca-bundle
</VirtualHost>



_______________________________________________

UPHPU mailing list
[email protected]
http://uphpu.org/mailman/listinfo/uphpu
IRC: #uphpu on irc.freenode.net

Reply via email to