Please fill out the fields below so we can help you better. Note: you must provide your domain name to get help. Domain names for issued certificates are all made public in Certificate Transparency logs (e.g. crt.sh | example.com), so withholding your domain name here does not increase secrecy, but only makes it harder for us to provide help.
My domain is:
qa-tic-backend.com
I ran this command:
sudo certbot certonly -v
--manual
--preferred-challenges dns
--manual-auth-hook "./../validate.sh"
--deploy-hook "./../deploy.sh "
--manual-cleanup-hook "./../cleanup.sh "
--disable-hook-validation
--noninteractive
--server https://acme-v02.api.letsencrypt.org/directory
--force-renewal
--email ...
--agree-tos
--domain $DOMAIN
It produced this output:
I used this command with flag --test-cert before. I was able to update let's encrypt staging certificates on my Azure key vault with that.
Then I removed flag --test-cert and added flag --server https://acme-v02.api.letsencrypt.org/directory. I wanted to replace the staging certificate with a production certificate.
This does not work. I still only get staging certificates.
The command is called in a Github action workflow on a Github runner with static IP.
My web server is (include version):
The operating system my web server runs on is (include version):
My hosting provider, if applicable, is:
I can login to a root shell on my machine (yes or no, or I don't know):
I'm using a control panel to manage my site (no, or provide the name and version of the control panel):
The version of my client is (e.g. output of certbot --version
or certbot-auto --version
if you're using Certbot):
I do not know. In the Github workflow certbot is installed like: sudo snap install certbot --classic before the command from above is called.