Skip to content

Commit a6fe26c

Browse files
feat: Migrate IP address certificate generation to Let's Encrypt
Updated to switch the ACME CA from ZeroSSL to Let's Encrypt for IP address certificate generation (option 3). This change removes the need for ZeroSSL-specific email registration, streamlining the certificate issuance process.
1 parent 9b751ca commit a6fe26c

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

install.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -281,10 +281,7 @@ config_after_install() {
281281

282282
# issue the certificate
283283
if command -v ~/.acme.sh/acme.sh &>/dev/null; then
284-
~/.acme.sh/acme.sh --set-default-ca --server zerossl
285-
# I need to register with an email for ZeroSSL
286-
read -p "Enter your email for ZeroSSL registration: " email
287-
~/.acme.sh/acme.sh --register-account -m ${email}
284+
~/.acme.sh/acme.sh --set-default-ca --server letsencrypt
288285
~/.acme.sh/acme.sh --issue -d ${server_ip} --standalone --httpport 80
289286
if [ $? -ne 0 ]; then
290287
LOGE "Issuing certificate with acme.sh failed, falling back to self-signed certificate."

0 commit comments

Comments
 (0)