Hi =)
 
My server is displaying one cert for two domains even though I've assigned each domain it's own cert in the httpd.conf file.  Any idea of how to fix this?
 
- Apache 1.3.33
- modssl 2.8.22
- I checked the ssl key and crt files to make sure they have the correct data
- I've restarted the web server httpd process
- I made sure to assign each domain a unique IP
- I searched the mailing list and didn't see that others have run into this problem
- I checked the FAQ
 
Httpd.conf entries for port 443 of the two domains are listed below.
 
Thanks in advance for any help / ideas.
 
-Ed
 
 
VirtualHost 64.69.41.124:443>
        SSLEngine on
        SSLCertificateFile /etc/httpd/conf/ssl.crt/server.discountrpg.crt
        SSLCertificateKeyFile /etc/httpd/conf/ssl.key/server.discountrpg.key

        ServerName www.discountrpg.com
        ServerAlias www.discountrpg.com discountrpg.com  rpgdiscount.com www.rpgdiscount.com rpgdiscounts.com www
.rpgdiscounts.com
        ServerAdmin [EMAIL PROTECTED]
        DocumentRoot /home/admin/domains/discountrpg.com/private_html
        ScriptAlias /cgi-bin/ /home/admin/domains/discountrpg.com/public_html/cgi-bin/
        UseCanonicalName OFF
        User admin
        Group admin
        CustomLog /var/log/httpd/domains/discountrpg.com.bytes bytes
        CustomLog /var/log/httpd/domains/discountrpg.com.log combined
        ErrorLog /var/log/httpd/domains/discountrpg.com.error.log
        <Directory /home/admin/domains/discountrpg.com/private_html>
                Options +Includes -Indexes
                php_admin_flag engine ON
                php_admin_flag safe_mode OFF
                php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f [EMAIL PROTECTED]'
        </Directory>
 
        #php_admin_value open_basedir /home/admin/:/tmp/:/var/www/:/usr/local/lib/php/:/etc/virtual/
</VirtualHost>
<VirtualHost 64.69.41.123:443>
        SSLEngine on
        SSLCertificateFile /etc/httpd/conf/ssl.crt/server.rpgstore.crt
        SSLCertificateKeyFile /etc/httpd/conf/ssl.key/server.rpgstore.key

        ServerName www.rpgstore.com
        ServerAlias www.rpgstore.com rpgstore.com
        ServerAdmin [EMAIL PROTECTED]
        DocumentRoot /home/admin/domains/rpgstore.com/private_html
        ScriptAlias /cgi-bin/ /home/admin/domains/rpgstore.com/public_html/cgi-bin/
        UseCanonicalName OFF
        User admin
        Group admin
        CustomLog /var/log/httpd/domains/rpgstore.com.bytes bytes
        CustomLog /var/log/httpd/domains/rpgstore.com.log combined
        ErrorLog /var/log/httpd/domains/rpgstore.com.error.log
        <Directory /home/admin/domains/rpgstore.com/private_html>
                Options +Includes -Indexes
                php_admin_flag engine ON
                php_admin_flag safe_mode OFF
                php_admin_value sendmail_path '/usr/sbin/sendmail -t -i -f [EMAIL PROTECTED]'
        </Directory>
 
        #php_admin_value open_basedir /home/admin/:/tmp/:/var/www/:/usr/local/lib/php/:/etc/virtual/
</VirtualHost>

Reply via email to