Wildcard certs for CentOS 8

I use wildcard certs on CentOS 7 with dns plugins from package manager. Is this option in progress for Centos 8? I’d like to wait for it instead of using in docker.

This is the latest update I could find: https://github.com/certbot/certbot/issues/7202#issuecomment-527224003

None of the Certbot/ACME packages are in EPEL 8 testing yet, so it’s probably not going to be soon.

If you keep using certbot-auto and temporarily use --no-self-upgrade (in the cronjob too), you may be able to install the DNS plugins into certbot-auto’s virtual environment.

source /opt/eff.org/certbot/venv/bin/activate
python -m pip install certbot-dns-cloudflare
deactivate

and

certbot-auto --no-self-upgrade plugins

but it’s not really a supported way to do things. Using acme.sh might be simpler for now.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.