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!
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.
This comment has been deleted
Hello and welcome to Digitalocean
Here you go :
cd /etc/apache2/ssl/cloud/
wget https://www.startssl.com/certs/class1/sha2/pem/sub.class1.server.sha2.ca.pem
cat ssl.crt sub.class1.server.sha2.ca.pem > ssl_unified.crt
Now your new Apache2 Configuration :
SSLEngine on
# Please no SSLv3
SSLProtocol all -SSLv2 -SSLv3
SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM
SSLCertificateFile /etc/apache2/ssl/cloud/ssl_unified.crt
SSLCertificateKeyFile /etc/apache2/ssl/cloud/private.key
Restart Apache2
PS I would recommend a better Cipher Suite:
SSLCipherSuite EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH
@Nathan485 could you reboot your Droplet and provide me your Domain Name ?!
PS: You done everything right as we “installed” the correct chain.