Forrest logo
back to the acme.sh tool

acme.sh:tldr:871de

acme.sh: Issue a certificate for multiple domains using standalone mode using port 80.
$ acme.sh --issue --standalone --domain ${example-com} --domain ${www-example-com}
try on your machine

This command is using the acme.sh script to issue SSL/TLS certificates for the specified domains using the standalone mode.

Here is the breakdown of the command:

  • acme.sh: This is the command for running the acme.sh script.
  • --issue: This option tells the acme.sh script that you want to issue a new certificate.
  • --standalone: This option instructs acme.sh to use the standalone mode for obtaining the certificate. In standalone mode, acme.sh will automatically spin up a temporary web server to respond to the ACME challenges required for certificate validation.
  • --domain ${example-com}: This specifies the primary domain for the certificate. Replace ${example-com} with your actual domain name without brackets.
  • --domain ${www-example-com}: This specifies an additional domain to include in the certificate. Replace ${www-example-com} with your actual domain name without brackets.

By running this command, acme.sh will automatically obtain and install SSL/TLS certificates for the specified domains using the standalone mode.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the acme.sh tool