QUESTIONS
How can I renew the https certificates for my webserver?
What do I need to renew secure certifcates for http?
How do I use certbot to extend the duration cert.pem & key.pem files for https?
Renew Certificates
Start the guide for the certificates:
root@server:$certbotcertonly--standalone
It will ask you for your domain, without a protocol at the start and without a port at the end
E.g for https://rokojori.com:3000 => rokojori.com
Ensure Access Rights
The certificates, that certbot just created, are created for the root user and are not accessible by any other specific user.
For instance, if you want your gitea user (which is handling the server for the https/ssl certificates) to have access,
change the ownership of those files:
chown{user}:{user}{path}
Configure & Restart Your Webserver
You will need to restart services using the certifcates
QUESTIONS
How can I renew the https certificates for my webserver?
What do I need to renew secure certifcates for http?
How do I use certbot to extend the duration cert.pem & key.pem files for https?