Hello.
I did not do spam. I really need certificates for these subdomains. I get such errors:
Simulating challenges:
Testing: surgut.itis-n.ru…OK
Validating domains:
Validating: surgut.itis-n.ru…OK [176.120.25.236]
Generating Certificate Signing Request (CSR)…OK
Requesting Certificate…Error: request failed: 429 [Too Many Requests]: https://acme-v01.api.letsencrypt.org/acme/new-cert
My domains is: m.surgut.itis-n.ru surgut.itis-n.ru sur.itis-n.ru app.surgut.itis-n.ru
I ran this command my script:
#!/bin/bash
PWD=`pwd`
cd /usr/local/lib/acme
SSLDIR="/etc/nginx/ssl"
ACC_KEY="/usr/local/etc/acme_account.key"
declare -A DOMAINS
DOMAINS["surgut.itis-n.ru"]="/var/www/html"
DOMAINS["sur.itis-n.ru"]="/var/www/html"
DOMAINS["app.surgut.itis-n.ru"]="/var/www/html"
DOMAINS["m.surgut.itis-n.ru"]="/var/www/html"
for DOMAIN in "${!DOMAINS[@]}"; do
echo $DOMAIN --- ${DOMAINS[$DOMAIN]};
mkdir -p $DOMAIN
certle genrsa 4096 > $DOMAIN.pem
certle cert $ACC_KEY $DOMAIN.pem -w ${DOMAINS[$DOMAIN]} -d $DOMAIN --csr csr.pem --cert cert.pem --chain chain.pem --fullchain fullchain.pem
mv cert.pem $SSLDIR/$DOMAIN
mv chain.pem $SSLDIR/$DOMAIN
mv csr.pem $SSLDIR/$DOMAIN
mv fullchain.pem $SSLDIR/$DOMAIN
mv $DOMAIN.pem $SSLDIR/$DOMAIN
done
/etc/init.d/nginx reload
cd $PWD
Files in /usr/local/lib/acme
CertLE.inc.php CertLE.php LE.inc.php
It produced this output: Requesting Certificate…Error: request failed: 429 [Too Many Requests]: https://acme-v01.api.letsencrypt.org/acme/new-cert
My web server is (include version): nginx/1.10.3
The operating system my web server runs on is (include version): Server OS Debian 9 . Client OS Windows 10 .
My hosting provider, if applicable, is: Netpoint LLC
I can login to a root shell on my machine (yes or no, or I don’t know): Yes, I can
I’m using a control panel to manage my site (no, or provide the name and version of the control panel): No