Link to home
Start Free TrialLog in
Avatar of dipster307
dipster307

asked on

How to use SSL in my website

My website is hosted by a hosting company, and I brought a SSL Cert from another company. Now I have setup SSL on by hosting company and the SSL is active on the site.

But I am confused on how to use SSL on my site. I can enter in my browser http://www.mysite.co.uk and also use https://www.mysite.co.uk.

So how is my site secure using SSL. How does it use the SSL port instead of port 80.

I am new to using SSL, can someone please guide me?
Avatar of BuggyCoder
BuggyCoder
Flag of India image

SSL Basically encrypts all the communication between Browser and Server.
The default port for ssl is 443 so when you write https://.. it actually encrypts the http request and transmits it on 443 port on web server.

The first time when you open https site, a certificate will be installed in your browser, which will be client certificate of your SSL Server certificate.

Here are few articles to start with on the same:-
http://computer.howstuffworks.com/encryption4.htm
http://luxsci.com/blog/how-does-secure-socket-layer-ssl-or-tls-work.html
http://www.verisign.com/ssl/ssl-information-center/how-ssl-security-works/index.html
http://www.instantssl.com/ssl-certificate-products/https.html
Avatar of dipster307
dipster307

ASKER

how to i get from the client side to use the https, becuase most clients just type in brower www.mysite.co.uk, and not the full url
because this is what happens, i open my website https://www.mysite.co.uk/login.aspx

then when I log in the url in browser show http://www.mysite.co.uk/index.aspx, so this means
I website is not setup to use SSL.

But my SSL cert are installedon the web server, so what am i doing work?
Avatar of Kerem ERSOY
Hi,

because this is what happens, i open my website https://www.mysite.co.uk/login.aspx

then when I log in the url in browser show http://www.mysite.co.uk/index.aspx, so this means
I website is not setup to use SSL.

But my SSL cert are installedon the web server, so what am i doing work?

First of all it seems that you were sucessful in istalling your SSL certificate so that you don't get any error when you browse https://www.mysite.co.uk.

But as you've noticed you can browse your site either with or without SSL. If you want to use SSL when you2re sending in login information you'll need to do some redirection in your software so that the the login information post will be made in SSL.

It seems that your site just alows the site to b browsed i both SSL and plain text HTML. So you'll need to edit your page source and make sure that whenever people sends the logon information this post to be in SSL.

Cheers,
K.
ASKER CERTIFIED SOLUTION
Avatar of BuggyCoder
BuggyCoder
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial