SSL Promo Code of 2011

Web security has become an essential one for every online business. Increase in online businesses has also led to increase in SSL (Secure Socket Layer) security. You could have come across numerous small, medium and large SSL certificate providers. But, only few of them have reputation and can offer best Cheap SSL certificates according to your online business needs. If you want to improve your website security, presence and traffic, then definitely you should look for a SSL certificate provider that is popular.

RapidSSLOnline.com promo code offers discount to the customers in form of a special code. You can save as much as 75% using RapidSSLOnline.com promotional codes. In this article, I will explain you how to get maximum discount using RapidSSLOnline.com coupon codes.

Most Popular RapidSSLOnline.com Coupon Codes of 2011

Here are some coupon codes which I have found. I hope you will get benefit from it.


@RAPIDSSL5YR - With this coupon code, you can buy 5 years RapidSSL Certificate for only $44.95.


@GEOTRUST99 - With this coupon code, you can buy 2 years GeoTrust QuickSSL Premium Certificate for only $99.00.


@THAWTE3YR - With this coupon code, you can buy 3 years Thawte SSL123 Certificate for only $94.00.


There are numerous reasons for the people to choose RapidSSLOnline.com as their SSL certificate provider. Firstly, their service is great. They have set a 24x7 live chat & email support to handle their customers. Secondly, the price and discounts offered by RapidSSLOnline.com. Third, is the 30-day Money Back and Price Match Guarantee. RapidSSLOnline.com discount coupons are really attractive and any one can save decent amount of $$$ through this coupon codes.


The coupon codes are seasonal and will be changing frequently. So, always look for the new one on https://www.rapidsslonline.com.

Apache 2: Set up Thawte SSL 123 Certificate

Here is a short tutorial how to set up a Thawte SSL 123 SSL certificate (a domain-only validation SSL Certificate). In a nutshell, it takes two steps: First, you need to create your private key and the certificate signing request to request the certificate. In a second step you need to configure your web server to use the certificate.

1. Create private key and certificate signing request

To create your private key and the certificate signing request use the following command:



# sudo openssl req -newkey rsa:2048 -nodes -keyout www.your-domain.com.pem -out www.your-domain.com.csr.pem
# chmod 600 www.your-domain.com.pem && chmod 600 www.your-domain.com.csr.pem


It is important to input your country code for the field "Country Name (2 letter code)" and the exact domain name (including all subdomains like www) for the field "Common Name (eg, YOUR name) []".
 Since the Thawte SSL 123 SSL certificate is a "domain-only validation 
certificate" the informations like company name or email address are 
irrelevant. The command creates to files: www.your-domain.com.pem (your private key) and www.your-domain.com.csr.pem
 (the certificate signing request). In the purchase process you will be 
asked for the CSR information; just copy and paste the data from your www.your-domain.com.csr.pem file:

-----BEGIN CERTIFICATE REQUEST-----
[...]
-----END CERTIFICATE REQUEST-----

2. Configure Apache2 web server to use the SSL certificate

After the purchasing process you will get your certificate, which look like:
-----BEGIN CERTIFICATE-----
[...]
-----END CERTIFICATE-----

Just paste the data at the end of your private key file www.your-domain.com.pem. Since Thawte has upgraded their root hierarchy to 2048bit RSA Keys (more information),
you need an Intermediate CA file to support old web browsers (like old 
versions of Internet Explorer). For the Apache2 web server you can 
download the file from Thawte:

# wget https://search.thawte.com/library/VERISIGN/ALL_OTHER/thawte%20ca/SSL123_CA_Bundle.pem

In your vhosts configuration the ssl options need to refer to the your certificate file and the Intermediate CA file:

<IfModule mod_ssl.c>
<VirtualHost *:443>
 
  ServerName www.your-domain.com
 
  SSLEngine on
  SSLCertificateFile /path/to/file/www.your-domain.com.pem
  SSLCACertificateFile /path/to/file/SSL123_CA_Bundle.pem
 
  [...]
 
</VirtualHost>
</IfModule>
In a last step, reload/restart your web server to activate the new configuration.

Source URL: 
http://blog.janjonas.net/2010-10-28/apache_2-thawte-ssl-123-certificate