Hello guys,
I know there’s a way to issue a certificate, like
/opt/certbot/certbot-auto --nginx --expand --agree-tos --email MYEMAIL@MYDOMAIN.COM --non-interactive -w /home/vhosts/mywebsite.com/public_html/ -d mywebsite.com
In that way I can issue a new certificate and automatically add it inside my NGINX .conf.
My question is: is there a way to ROLLBACK that? Remove the SSL, remove the NGINX config and make that website available only on :80 port instead of :443 ?
I’ve found many ways like --revoke and --delete, it works, but the 443 config line is not removed on nginx config…
Thank you!