HOW TO ORDER SSL CERTIFICATE AND INSTALL IT ON IIS SERVER?

Page 1

HOW TO ORDER SSL CERTIFICATE AND INSTALL IT ON IIS SERVER?

REGISTERED OFFICE: SSL2BUY 595 S Knott Ave Anaheim, CA 92804 United States https://www.ssl2buy.com


HOW TO ORDER SSL CERTIFICATE AND INSTALL IT ON IIS SERVER?

OVERVIEW SSL Certificate is the next future for those websites who really cares about their customers and clients. Indeed, it is a technological revolution that keeps website health in shape by encrypting the information transmitting from a browser to a server. In this crunch time, where improper security causes data breaches on daily base, SSL really becomes a boon, especially for SMBs, the CA/Browser forum and other related authorities makes a simple and automated SSL order process so that every enterprise can take advantage of SSL security and could provide a safer environment to their customers, visitors and clients.

ORDER PROCESS OF THE SSL CERTIFICATE An SSL seeker has to pass through a simple online process instead of an extensive process. Just follow these simple steps, and SSL certificate will be yours. ✓ Generate and submit the CSR (Certificate Signing Request). ✓ Choose a right SSL product and order it. ✓ Receive your SSL certificate in the email and install it. ✓ Check your SSL certificate is installed correctly or not. ✓ Move your site from HTTP to HTTPS using 301-redirection. ✓ Check your website for mixed content error message. ✓ Put the “Trusted Site Seal” on your website. Here, we take an example of our official website SSL2BUY where a branched out SSL products is designed for every enterprise requirement at an inexpensive price. Whether you go for RapidSSL, Symantec, Thawte, GeoTrust, Comodo, AlphaSSL or GlobalSign, You will find a reliable solution for an SSL product with enhanced protection for your web. NOTE: Before purchasing an SSL certificate, you should have generated CSR, ownership and contact information regarding each domain name and organization validation documents (in the case of high-assurance or extended validation certificate).

2


HOW TO ORDER SSL CERTIFICATE AND INSTALL IT ON IIS SERVER?

GENERATE CSR FOR IIS SERVER First, you need to generate the CSR on your desired server. Here at, we explain the process of generating the CSR on IIS server. 1. Go to Start menu and go to Administrative Tools, then click on IIS (Internet Information Services) manager.

2. On the left side under “Connection” column, click on the server name. You will find Server Certificates then double click on it.

3


HOW TO ORDER SSL CERTIFICATE AND INSTALL IT ON IIS SERVER?

3. On the right side in IIS manager, you will find the Action column where you have to click on Create Certificate Request.

4


HOW TO ORDER SSL CERTIFICATE AND INSTALL IT ON IIS SERVER? 4. Now, a screen will appear where you have to fill company and domain information and click Next button. The details are elaborated here:

Common Name: FQDN (Fully qualified domain name) of your server should be matched with what you type in the browser (For example, www.yourdomain.com).

Organization: A legal name of an organization should be suffixed with, such as Inc, Corp, or LLC

Organizational Unit: Write the name of the Organization’s unit, which handles certificate management.

City / Locality: The name of the city where your organization is situated.

State / Province: The name of the State/Province where your organization is situated.

Country / Region: Write a two-letter ISO code, for example, US, GB, etc.

5


HOW TO ORDER SSL CERTIFICATE AND INSTALL IT ON IIS SERVER? 5. In the "Cryptographic Service Provider Properties" window, enter the information of cryptographic service provider and select 2048-bit length then, click on Next button.

6. Click the button marked with the three dots and enter the details of filename and location to save the CSR file. Click on Finish button.

6


HOW TO ORDER SSL CERTIFICATE AND INSTALL IT ON IIS SERVER?

PURCHASE AN SSL CERTIFICATE: After generating the CSR, proceed for the SSL purchase from leading SSL certificate provider SSL2BUY. •

Select the appropriate SSL certificate product as per your business needs.

7


HOW TO ORDER SSL CERTIFICATE AND INSTALL IT ON IIS SERVER? •

You will have a selected product that explains product detail, features and price. Click on “Buy | Renew” button to go ahead.

8


HOW TO ORDER SSL CERTIFICATE AND INSTALL IT ON IIS SERVER? •

Select the validity and quantity of your selected SSL certificate product and click on continue.

If you are registered user then login to your account, otherwise sign up as a new user.

9


HOW TO ORDER SSL CERTIFICATE AND INSTALL IT ON IIS SERVER? •

Please confirm your billing information, check mark “I agree with thirty (30) days order cancellation and refund policy”, then click on “continue”.

10


HOW TO ORDER SSL CERTIFICATE AND INSTALL IT ON IIS SERVER?

Now reconfirm your billing information and click on “Continue to Payment Method”.

11


HOW TO ORDER SSL CERTIFICATE AND INSTALL IT ON IIS SERVER? •

Choose your preferred payment method, click on “Submit Payment” to complete the checkout process.

When SSL certificate order process has been completed, CA will verify your order. It will take some times to issue your certificate which depends on the type of certificate your choose. Once CA confirmed that your website and/or business is reliable, they will send your certificate via email. After getting your certificate, you need to install it on your desired server. Here at we explain how to install SSL on IIS server.

12


HOW TO ORDER SSL CERTIFICATE AND INSTALL IT ON IIS SERVER?

INSTALL SSL CERTIFICATE ON IIS SERVER •

Browse Internet Information Services (IIS) Manager in Administrative tool in the start menu.

Click on the server name in the “Connections” column on the left and double-click on Server Certificates.

On the right side, in the Actions column, click on Complete Certificate Request...

13


HOW TO ORDER SSL CERTIFICATE AND INSTALL IT ON IIS SERVER?

•

Click the button with the three dots, and choose the server certificate (your_domain_name.cer file) that you received from the certificate authority. Then, you will be needed to provide a friendly name, which helps the server to differentiate the certificate. Select the certificate store for the new certificate.

14


HOW TO ORDER SSL CERTIFICATE AND INSTALL IT ON IIS SERVER?

Click on OK button to install the certificate to the server.

If successful, you will see your newly installed certificate in the list.

Now to bind the certificate, in connection column, click on the website list, and select the website to which you want to bind the certificate. Click on Binding on the right side.

15


HOW TO ORDER SSL CERTIFICATE AND INSTALL IT ON IIS SERVER?

Click on Add button in “Site Binding” window.

16


HOW TO ORDER SSL CERTIFICATE AND INSTALL IT ON IIS SERVER? •

In "Add Site Binding" window, change the Type to HTTPS, then selects the SSL certificate that you just installed. Click OK.

You will now see the binding for port 443 listed. Click Close.

Your SSL certificate is now installed and configured for the particular website.

17


HOW TO ORDER SSL CERTIFICATE AND INSTALL IT ON IIS SERVER?

USE OF SSL CHECKER: It is necessary to confirm that your SSL certificate is installed and configured accurately. It will avoid confusion about proper SSL installation as many entrants or webmasters make small mistakes in SSL installation. Our SSL certificate installation checker tool will completely examine your SSL installation and will discover the certificate information. The SSL checker tool will help to show you whether the SSL is installed properly or not.

SET 301-REDIRECTION: A 301 redirection means you wish to permanently move your website to a new URL. The links and other records pertaining to current HTTP URL will be updated to a new HTTPS URL redirection. .htaccess - It enables HTTPS and then redirects all requests to HTTPS protocol. RewriteCond %{HTTPS} !on [OR] RewriteCond %{HTTP_HOST} !^www\. RewriteRule (.*) https://www.domainname.com%{REQUEST_URI} [L,R=301] (15:31) jaymin: Is it final code?

web.config - It will force HTTPS for ALL resources (using 301 Permanent Redirect). <configuration> <system.webServer> <rewrite> <rules> <clear /> <rule name="Redirect to https" stopProcessing="true"> <match url="(.*)" /> <conditions> <add input="{HTTPS}" pattern="off" ignoreCase="true" /> </conditions> <action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" appendQueryString="false" /> </rule> </rules> </rewrite> </system.webServer> </configuration>

18


HOW TO ORDER SSL CERTIFICATE AND INSTALL IT ON IIS SERVER? The above process for 301-redirection will move your website to HTTPS by forcefully and it will boost credibility when visitors observe that your website is secured with an SSL certificate.

CHECK MIXED CONTENT ERROR: When web users will access your website, the browser shows non-secure items warning. Such error occurs when some element on the page is not loaded from HTTPS, for example, images, iframes, flash remain left, with the non-secure source. Using our “Why No Padlock”, you can find all non-secure elements from the site.

✓ Change all URLs to HTTPS: Open the page which shows an error and look for http:// URL and change it to https:// for all references of images, iframes, flash and javascript. Below is an example: <img src="https://www.domain.com/image.gif" alt="example"/>

Note: This solution is not valid for the third party website Image, which is not secured with SSL. ✓ Change all links to // or make them relative:

Instead of changing single http:// URL to https:// just use the following code. <img src="//www.domain.com/image.gif" alt="example"/>

If the image or script is on the same domain, make them relatively instead of absolutely:

19


HOW TO ORDER SSL CERTIFICATE AND INSTALL IT ON IIS SERVER? <img src="/image.gif" alt="example"/>

If the page is secured, the image will load securely otherwise it will load normally. ✓ Browser Setting - Alternative Way: In case, when you cannot access that webpage, you can change the setting of your browser by following the below steps: o

Go to Tools, Internet Options.

o

Choose the "Security" Tab. Click on the "Custom Level" button.

o

Browse the option: "Display mixed content" and Select "Enable".

o

Click Ok. You will get a "Security Warning" pop-up. Click Yes.

INSTALL A SECURE SITE SEAL: When you order an SSL certificate, your recognized certificate authority offers “Secured Site Seal” at free of cost. It is highly recommended to install the site seal on your website, which will boost confidence of your visitors and customers as well reliability of your website. To implement site seal, you need to execute JavaScript or HTML code on your website.

Benefits of Secure Site Seal: ✓ Increase trust

✓ Provides the confidence

✓ Confirms the business identity

✓ Converts visitors into paying customers

20


HOW TO ORDER SSL CERTIFICATE AND INSTALL IT ON IIS SERVER?

About SSL2BUY: SSL2BUY is a top-notch supplier of SSL security certificate; we manage strong relationships with major certificate authorities (Comodo, GlobalSign, and Symantec Group). As an authorized re-seller, we are offering huge discount on different types of SSL certificate products that can help to secure your online presence. Our core business is SSL security products, so our full focus is on securing your planet. Nowadays, SSL2BUY secures thousand of websites and have earned smiles on happy customers. Our main vision is to understand customer requirements and provides the utmost solution that fulfills their requirements.

SSL2BUY 595 S Knott Ave Anaheim, CA 92804 United States

Website: https://www.ssl2buy.com Twitter: https://twitter.com/ssl2buy Google+: https://plus.google.com/+SSL2BUY

21


Turn static files into dynamic content formats.

Create a flipbook
Issuu converts static files into: digital portfolios, online yearbooks, online catalogs, digital photo albums and more. Sign up and create your flipbook.