Upgraded my site to HTTPS

gamestoenjoy

Well-Known Member
Full GL Member
502
2010
28
Awards
4
Credits
5,982
Hi,

I upgraded my site: kodibeginner from HTTP to HTTPS

Now my site is much more secure and also HTTPS sites have higher ranking in Google.

Excellent milestone for me :grin:
 
Last edited by a moderator:
I hear that some versions of Chrome is starting to redirect people to HTTPS even if the site doesn't support HTTPS yet.
 
I hear that some versions of Chrome is starting to redirect people to HTTPS even if the site doesn't support HTTPS yet.

This is impossible. If the site doesn't support HTTPS you will get 404 page not found error.
Chrome will soon show "Not secure" for HTTP sites which will be very bad for those sites owners.
 
Last edited:
Oh hey, someone else using Let's Encrypt. Very handy tool that!
 
This is really a very good news!
Way to go! I use cloudflare and it does offer free SSL certificate.
 
This is impossible. If the site doesn't support HTTPS you will get 404 page not found error.
Chrome will soon show "Not secure" for HTTP sites which will be very bad for those sites owners.
404 error = page not found.
If site doesn't support HTTPS, it gives security warning.

Oh hey, someone else using Let's Encrypt. Very handy tool that!
I used to buy Comodo certificate in the past, but process always took really long, verification was often sent to non-existing email address, etc., so I now use Let's Encrypt (more specifically Certbot) instead.

For new certificate:
Code:
certbot --nginx certonly -d domain.tld -d www.domain.tld

For renew:
Code:
certbot renew

This simple!
 
Back
Top