Difference between revisions of "FreeCA Certs"

From TheBestLinux.com
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 6: Line 6:
  
 
I LOVE & use Let's Encrypt, Google's free SSL certificate authority and server and it's certificate renewal utility Certbot!  Here's an example of the command to use to renew your SSL certificate for use on an NginX webserver:
 
I LOVE & use Let's Encrypt, Google's free SSL certificate authority and server and it's certificate renewal utility Certbot!  Here's an example of the command to use to renew your SSL certificate for use on an NginX webserver:
<br /><br />
+
<br />
 
<pre style="colore:blue">
 
<pre style="colore:blue">
 
[root@wiki.linuxjamie.com:~]# certbot --nginx --redirect --agree-tos --no-eff-email -d wiki.linuxjamie.com -m jamie@linuxjamie.com
 
[root@wiki.linuxjamie.com:~]# certbot --nginx --redirect --agree-tos --no-eff-email -d wiki.linuxjamie.com -m jamie@linuxjamie.com
Line 12: Line 12:
 
<br /><br />
 
<br /><br />
 
Here's an example crontab entry to automate your Let's Encrypt SSL certificate renewal on a regular basis so it never expires:
 
Here's an example crontab entry to automate your Let's Encrypt SSL certificate renewal on a regular basis so it never expires:
<br /><br />
+
<br />
 
<pre style="color:blue">
 
<pre style="color:blue">
 
[root@www.thebestlinux.com:/usr/share/nginx/html]# crontab -l
 
[root@www.thebestlinux.com:/usr/share/nginx/html]# crontab -l
 
0 2 * * * certbot renew --quiet
 
0 2 * * * certbot renew --quiet
 
 
</pre>
 
</pre>
 
<br /><br />
 
<br /><br />

Latest revision as of 05:03, 15 December 2022

Here is some info for free CA certificates:

Certificate Authority Wiki

I LOVE & use Let's Encrypt, Google's free SSL certificate authority and server and it's certificate renewal utility Certbot! Here's an example of the command to use to renew your SSL certificate for use on an NginX webserver:

[root@wiki.linuxjamie.com:~]# certbot --nginx --redirect --agree-tos --no-eff-email -d wiki.linuxjamie.com -m jamie@linuxjamie.com



Here's an example crontab entry to automate your Let's Encrypt SSL certificate renewal on a regular basis so it never expires:

[root@www.thebestlinux.com:/usr/share/nginx/html]# crontab -l
0 2 * * * certbot renew --quiet