I made a lot of requests try to make a usable configuration, now certbot only prints limits reached.
Obtaining a new certificate
An unexpected error occurred:
There were too many requests of a given type :: Error creating new order :: too many failed authorizations recently: see https://letsencrypt.org/docs/rate-limits/
Please see the logfiles in /var/log/letsencrypt for more details.
What should I do now ?
I want to manually create the certificate, I added routes in nginx for the .wellknow, but when I finally got it right Let’s Encrypt banned me :D.
My Nginx is listening on port 81 for the moment, cause I am migrating my main server from Apache to Nginx, and I need https to work, probably 8443 will be needed in this case as well.
This is the command I use:
certbot certonly --webroot -w /home/myuser/beta/ -d beta.mydomain.mk:81
And this is the Nginx route:
location /.well-known {
alias /home/myuser/beta/.well-known;
}
Can someone guide me how to remove the ban and configure my Nginx server for 8443, please?