User: wpmediabrix / WkD28Gb7cA

wpmediabrix.whitecitysoft.com

 

SSH port 22032

 

Root

 

 

Note: These are access paramaters for MBrix WP on a separate instance:

 

Mediabrix WP EC2((1.7GB-small) instance - 2 WP sites installed


FTP, SFTP


HTTP





SSL is now set on www.mediabrix.com server

SSL check:

http://www.sslshopper.com/ssl-checker.html#hostname=https://www.mediabrix.com

 

https://apps.facebook.com/mediabrix/  works!

 

$openssl pkcs12 -in wildcard.mediabrix.pfx -out outputfile.txt -nodes    you get a PEM format file with key and certificate

from the file outputfile.txt copy only the private key and create the new on mediabrix.com.key,  apache need 3 files

crt, key, intermediate crt.

 

added configuration in vhost apache file:

/etc/httpd/conf.d/wpmediabrix.whitecitysoft.com.conf

 

<VirtualHost *:443>

DocumentRoot /var/www/html/wp1mediabrix

ServerName www.mediabrix.com

<Directory "/var/www/html">

    Options Indexes FollowSymLinks

    AllowOverride All

    Order allow,deny

    Allow from all

</Directory>

SSLEngine on

SSLProtocol -ALL +SSLv3 +TLSv1

SSLCipherSuite ALL:!ADH:RC4+RSA:+HIGH:+MEDIUM:-LOW:-SSLv2:-EXP

SSLCertificateFile /home/wpmediabrix/Certs/wildcard-cert.mediabrix.com

SSLCertificateKeyFile /home/wpmediabrix/Certs/mediabrix.com.key

SSLCertificateChainFile /home/wpmediabrix/Certs/intermediate.crt

</VirtualHost>