Likes: 0
Results 1 to 1 of 1
Thread: Free SSL Certificates
-
09-02-16, 02:33 AM #1
Free SSL Certificates
Register to remove this adFirst of all, let's say you want to get a certificate for example.com. To run the installation, you must have root access to your example.com web server.
To Generate and Install Let's Encrypt Free SSL Certificate, you must first download and run the Let's Encrypt client application.
To install Let's Encrypt Free SSL certificate follow these Steps:
Step 1: Login to your 'example.com' web server using SSH with root access.
Step 2: To install the Git version control system, type the following command:Code:apt-get install git
Step 3: Then download and install the latest version of Let's Encrypt Client application, type the following commands:Code:git clone https://github.com/letsencrypt/letsencrypt cd letsencrypt ./letsencrypt-auto
Step 4: Once the installation starts, press Enter to accept the agreement.
Step 5: Then press Enter to specify the server name manually in the text box (for example,Example Domain) and then press Enter.
Step 6: Next, enter your email address, where you can receive messages from Let's Encrypt and to recover lost keys, and then press Enter.
Step 7: Review the 'Terms of Service,' and then press Enter to generate and install the SSL certificate.
Once the installation completes, you'll receive a 'Congratulation' message.
How to Configure Nginx/Apache for Let's Encrypt SSL Certificate
By default, Nginx or Apache web servers are not configured to how to use your new certificates.
For example, in case of Nginx: To use the installed SSL certificate, you need to edit Nginx configuration file. Type the following command to open Nginx configuration file:Code:$ sudo nano /etc/nginx/sites-available/www.example.comCode:http{ server{ … listen 443 ssl; server_name www.example.com; ssl_certificate /etc/letsencrypt/live/www.example.com/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/.wwwexample.com/privkey.pem; … } }Code:sudo nginx -s reload
Congratulation you have successfully installed SSL certificate for your example.com domain.
› See More: Free SSL Certificates
Related Threads - Scroll Down after related threads if you are only interested to view replies for above post/thread
Visitors found this page by searching for:
Nobody landed on this page from a search engine, yet!
SEO Blog