Tuesday, October 1, 2013

Cheker

 URL which infrom you page contain are secure valid or not

http://www.whynopadlock.com

Gzip Enable or not for website

http://www.whatsmyip.org/more-info-about-you/

SSL Checker URL

http://www.sslshopper.com/ssl-checker.html

http://www.digicert.com/help/

https://sslcheck.globalsign.com/en_US
openssl req -new -newkey rsa:2048 -nodes -keyout yourdomain.key -out yourdomain.csr
  
Common Name: The fully-qualified domain name, or URL, you're securing.If you are requesting a Wildcard certificate, add an asterisk (*) to the left of the common name where you want the wildcard, for example *.coolexample.com. 
Organization: The legally-registered name for your business. If you are enrolling as an individual, enter the certificate requestor's name. 
Organization Unit: If applicable, enter the DBA (doing business as) name. 
City or Locality: Name of the city where your organization is registered/located. Do not abbreviate. 
State or Province: Name of the state or province where your organization is located. Do not abbreviate. 
Country: The two-letter International Organization for Standardization (ISO) format country code for where your organization is legally registered.  
       
Open the CSR in a text editor and copy all of the text.
Paste the full CSR into the SSL enrollment form in your account.



    ServerAdmin user@email.com
    DocumentRoot /home/example/public_html/web
    Options -Indexes FollowSymLinks
    AllowOverride All
    Order allow,deny
    Allow from all
DirectoryIndex  index.php index5.php index.html index.htm index.shtml index.php4 index.php3 index.phtml index.cgi
    ServerName www.example.com
    ServerAlias example.com
    SSLEngine on
    SSLCertificateFile /etc/httpd/conf.d/certfiles/example.com.crt
    SSLCertificateKeyFile /etc/httpd/conf.d/certfiles/example.key
    SSLCertificateChainFile /etc/httpd/conf.d/certfiles/gd_bundle.crt
    ErrorLog logs/exampleerror.log
    CustomLog logs/exampleaccess.log combined