Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

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!
I have tried to use startssl 3 times does not work but it does weirdly. I guess they hate me
@mlwalk3r: Have you tried contacting them? They usually respond very quickly.
Some of these articles need to be written for utter newbies, for example - when it says upload to server, where should abouts should I upload it to?
@212nath: The command you need to run to upload the files to the droplet is right below that paragraph:
<img src=“http://i.imgur.com/GwiGmeq.png” alt=“Screenshot” />
For SSH copy with scp you can use:
scp ca.pem private.key sub.class1.server.ca.pem ssl.crt username@ip_of_your_server:/home/username/
Otherwise, great howto.
And it is better to edit /etc/apache2/sites-enabled/default-ssl because editing 000-default broke my access to domain.com/iredadmin and awstats.
Nice howto,
But is here a tutorial on how to enable ssl on only one-two pages? I only want ssl on my register page and login page. Eg. mysite.com/register mysite.com/login. I bought two SSL certs, one for my desktop site and one for my mobile version. mysite.com m.mysite.com
@KiwoT: You can’t protect only two pages easily. Why do you want to do that? The cookies will be passed in clear-text (thus the session keys) which would render SSL useless.
Wont SSL slow down the website and add overhead to the server resources? Thats why I only wanted to use my SSL on my login page and registration page. Seen alot of other websites doing this, but is it a bad idea? thanks.
@KiwoT: The performance overhead isn’t that great so I recommend enabling it on all pages.