I am trying to find out how to set up SSL / HTTPS encryption between my origin server (droplet) and cloudflare.
I already managed to set up HTTPS encryption between cloudflare and visitors, just am unsure how to set up encryption between my origin server and cloudflare.
Can anyone advise?
Thanks!
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Heya, @michaeltjeng
You can setup the domain name with CloudFlare and use the Full Strict SSL/TLS option. On your droplet you can use
certbot
to issue and install an SSL Certificate to complete the whole process. Have in mind that if there is DNS change this can take up few good hours in order to take effect.Regards
Heya,
You can configure an Let’s Encrypt SSL on your Droplet. That way you can get the full encruption option in Cloudflare.
You can just run the
certbot
command and it will guide you through the steps you need to take.If you need to check which WebService you are using -
Apache/Nginx
you can always run the following commandHi there,
What you could do here is to setup a free Let’s Encrypt SSL on your Droplet itself. Depending on the webserver that you have you can follow the steps here:
The
certbot
CLI will setup the SSL installation for you and also automate the renewal process.That way you will then be able to enable the full encruption option in Cloudflare:
Let me know how it goes!
- Bobby