moving from http to https
For https certificates are required. You can buy one or get a free one from certbot
getting certificates with certbot
Install certbot on your server
- root# pacman -S certbot certbot-nginx
Get a certificate:
- root# certbot certonly --nginx
!IMPORTANT INFORMATION ABOUT CERTBOT CERTIFICATES MAINTENANCE
- Congratulations! Your certificate and chain have been saved at:
/etc/letsencrypt/live//fullchain.pem
Your key file has been saved at:
/etc/letsencrypt/live//privkey.pem
Your cert will expire on 2020-07-08. To obtain a new or tweaked
version of this certificate in the future, simply run certbot again
with the “certonly” option. To non-interactively renew all of
your certificates, run “certbot renew”- Your account credentials have been saved in your Certbot
configuration directory at /etc/letsencrypt. You should make a
secure backup of this folder now. This configuration directory will
also contain certificates and private keys obtained by Certbot so
making regular backups of this folder is ideal.
Configure nginx (/etc/nginx/nginx.conf):
/etc/nginx/nginx.conf
|
|
Configure automatic certificate renewal:
Use systemd/Timers
- Create the timer:
/etc/systemd/system/certbot-renewal.timer
The following will run the timer once every 3 months, or as soon as possible after execution target time (Persistent=true)
/etc/systemd/system/certbot-renewal.timer
|
|
- Create the service:
/etc/systemd/system/certbot-renewal.service
/etc/systemd/system/certbot-renewal.service
|
|
3. Enable and start the timer
- root# systemctl start certbot-renewal.timer
- root# systemctl enable certbot-renewal.timer
check your timer is ready for execution
- root# systemctl list-timers
Now, the certificates will be renew every three months.