Skip to main content

Posts

Showing posts from 2018

SSL No 2

Hom Let’s Encrypt SSL, Nginx, MUP → Deployment (Meteor) Nginx used for SSL setup Let’s Encrypt free SSL certificate: Use the instructions on this page to use OpenSSL to create your certificate signing request (CSR) and then to install your  SSL  certificate on your  Nginx  server. Restart Note: After you've installed your  SSL /TLS certificate and configured the server to use it, you must restart your  Nginx  instance. Let’s start by generating Add a A Record in your domain’s DNS Settings Setting up Let’s Encrypt ssh into your server console and run following commands $ wget https://dl.eff.org/certbot-auto $ chmod a+x certbot-auto $ ./certbot-auto certonly -d yourdomain.com --standalone After successful execution of the last command you can see your Certificate & Key generated in /etc/letsencrypt/yourdomain.com Setting up Nginx Let’s install nginx which will be our proxy server $ sudo apt-get ins