Page 1 of 1

How do I enable traditional SSL support for a domain?

Posted: Sat Apr 18, 2009 11:09 pm
by Edge100x
Please shoot us an email at support@nfoservers.com and we will guide you through this process. Overall, it looks like this:
  1. Upgrade to the Pro webhosting plan, if you do not already use it, through the order page that you originally used for the service.
  2. Send us the following information, which we will need to generate a CSR (Certificate Signing Request) for you:

    Country Name (2 letter code)
    State or Province Name (full name)
    Locality Name (eg, city)
    Organization Name (eg, company)
    Your website URL
    Email Address
  3. We generate a CSR and email that to you.
  4. You give the CSR to your SSL provider and that company signs it. You email us back the signed certificate.
  5. We install the certificate and set up some other items on our end, then let you know the domain is ready. The option to enable SSL for the domain will appear on the Domains page in your control panel.
  6. You enable SSL for the domain and wait up to a few hours for the IP change to propagate.

    If you need to redirect all webpages on your domain to the SSL version of your site, create a .htaccess file in the base folder:

    Code: Select all

    RewriteEngine on
    RewriteCond %{HTTPS}  off
    RewriteRule ^(.*)$    https://yourdomain/$1 [R=301,L]
    
    Where "yourdomain" is your domain name (such as youridentifier.site.nfoservers.com).