Maven4Champ
Technical User
- Jun 16, 2004
- 154
So, as you notice, the site shows as a security risk / invalid certificate due to a self-signed certificate where the cert is only valid for domU-12-31-36-00-1D-F1.
I'm needing some assistance ASAP on how to properly install/configure either apache (httpd.conf), openssl (for the csr and key setup), GoDaddy (UCC .crt and gd_bundle.crt), or all of the above in order to get this thing working properly.
Using Amazon EC2 cloud with single IP tied to the server (thus the need for the UCC Certificate from GoDaddy).
Using VirtualHost and NameVirtualHost in my httpd.conf... here is some of my httpd.conf:
Code:
NameVirtualHost *:443
<VirtualHost *:443>
ServerName creative-clarity.com
DocumentRoot /var/[URL unfurl="true"]www/ccsolutions/data/www/creative-clarity.com[/URL]
suPHP_Engine on
AddHandler x-httpd-php .php .php3 .php4 .php5
suPHP_AddHandler x-httpd-php
SuPHP_UserGroup nobody nobody
CustomLog /var/[URL unfurl="true"]www/httpd-logs/creative-clarity.com.access.log[/URL] combined
ErrorLog /var/[URL unfurl="true"]www/httpd-logs/creative-clarity.com.error.log[/URL]
ServerAdmin webmaster@creative-clarity.com
AddDefaultCharset UTF-8
AddType application/x-httpd-php .php .php3 .php4 .php5 .phtml
AddType application/x-httpd-php-source .phps
ServerAlias [URL unfurl="true"]www.creative-clarity.com[/URL]
DirectoryIndex index.htm index.html index.php index.shtm index.shtml index.cgi index.pl index.xhtml index.xml
SSLEngine on
SSLCertificateFile /etc/ssl/certs/creative-clarity.com.crt
SSLCertificateKeyFile /etc/ssl/certs/creative-clarity.com.key
SSLCertificateChainFile /etc/ssl/certs/gd_bundle.crt
</VirtualHost>
I received the .crt for my domain (and 4 other domains), and the gd_bundle.crt from GoDaddy. I provided them a CSR (certificate request) via OpenSSL, using as the Common Name.
Is something wrong in /etc/hosts?, /etc/httpd/conf/httpd.conf?, OpenSSL CSR, GoDaddy, etc.?
Any help is greatly, GREATLY appreciated.