RE: Secure Sentora Domains with Let's Encrypt
06-08-2024, 05:06 PM
(This post was last modified: 06-08-2024, 07:04 PM by andykimpe.)
require remplace this code on doc
retrun errorr
by this
or this
or for new system
Ubuntu/Debian
CentOS/RHEL/AlmaLinux/Rocky Linux/Fedora
easy use in full silent mode
not require stop apache
not require email adresse
Code:
git clone https://github.com/letsencrypt/letsencrypt
cd letsencrypt
./letsencrypt-auto --help
retrun errorr
Code:
bash: ./letsencrypt-auto: No such file or directory
by this
Code:
git clone https://github.com/certbot/certbot
cd certbot/letsencrypt-auto-source
./letsencrypt-auto --help
or this
Code:
wget https://github.com/certbot/certbot/raw/master/letsencrypt-auto-source/letsencrypt-auto
chmod +x letsencrypt-auto
./letsencrypt-auto --help
or for new system
Ubuntu/Debian
Code:
apt-get -y install certbot
CentOS/RHEL/AlmaLinux/Rocky Linux/Fedora
Code:
dnf -y install certbot
easy use in full silent mode
not require stop apache
not require email adresse
Code:
certbot --non-interactive --agree-tos --register-unsafely-without-email --renew-by-default --standalone --http-01-port 90 certonly -d www.softwarecollections.org -d softwarecollections.org
letsencrypt-auto --non-interactive --agree-tos --register-unsafely-without-email --renew-by-default --standalone --http-01-port 90 certonly -d www.softwarecollections.org -d softwarecollections.org