Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Nodejitsu SSL Certificate

Tags:

ssl

nodejitsu

Does anyone knows how to deploy an SSL certificate to my nodejitsu App?

I can see that I already have https enabled but i would like to buy a SSL Certificate now that I'm opening for business.

like image 677
levhita Avatar asked Jan 07 '13 22:01

levhita


People also ask

What does an SSL certificate do?

An SSL certificate is a bit of code on your web server that provides security for online communications. When a web browser contacts your secured website, the SSL certificate enables an encrypted connection. It's kind of like sealing a letter in an envelope before sending it through the mail.

Why do I need an SSL certificate?

Why you need an SSL certificate. Websites need SSL certificates to keep user data secure, verify ownership of the website, prevent attackers from creating a fake version of the site, and convey trust to users.

Which type of SSL certificate is best?

1. Extended Validation Certificates (EV SSL) The highest-ranking and most expensive SSL certificate type is an Extended Validation Certificate. Setting up an EV certificate requires the website owner to go through a standardized identity verification process to confirm they have exclusive rights to their domain.

Can I install SSL certificate on localhost?

Generate an SSL Certificate for Localhost Although this would cause a “Not Secure” warning in the web browser, but that should be fine as it encrypts the data. Once this is done, you can configure your local web server with localhost. crt and localhost. key in your list of trusted roots.


1 Answers

To get an SSL certificate working with a custom domain on Nodejitsu, you can do the following:

  1. Subscribe to a "business" plan on Nodejitsu (custom domain + SSL isn't available for "individual" plans).
  2. Set up your DNS to use your domain.
  3. Create a certificate signing request (CSR), maybe by using OpenSSL like this.
  4. Buy your SSL certificate from your certificate authority (CA) of choice.
  5. Go to your Nodejitsu webops panel, where there is an SSL tab for your app.
  6. Upload your private key (created with your CSR), your certificate, and your CA certificate, via the webops panel.

The details of these steps will be slightly different depending on what you use to create your CSR and who your cert provider is. If you get stuck Nodejitsu support can help set you up.

like image 150
exclsr Avatar answered Oct 09 '22 11:10

exclsr