-
-
Notifications
You must be signed in to change notification settings - Fork 5.3k
How to issue a cert
neil edited this page Jun 17, 2016
·
24 revisions
acme.sh --issue -d aa.com -w /home/wwwroot/aa.com
acme.sh --issue -d aa.com --standalone
If you are using a non-standard 80
port behind a reverse proxy or load balancer , you can use --httpport
to specify your port:
acme.sh --issue -d aa.com --standalone --httpport 88
acme.sh --issue -d aa.com --tls
If you are using a non-standard 443
port behind a reverse proxy or load balancer , you can use --tlsport
to specify your port:
acme.sh --issue -d aa.com --tls --tlsport 8443
acme.sh --issue -d aa.com --dns
Cloud flare api:
export CF_Key="sdfsdfsdfljlbjkljlkjsdfoiwje"
export CF_Email="[email protected]"
acme.sh --issue -d aa.com --dns dns_cf
How to use dns api: https://github.com/Neilpang/acme.sh/tree/master/dnsapi
acme.sh --issue -d aa.com --apache
Issue a single cert including multiple domains. All the domains use the same validation method:
You must point aa.com
and www.aa.com
to the same web root folder /home/wwwroot/aa.com
acme.sh --issue -d aa.com -w /home/wwwroot/aa.com -d www.aa.com
acme.sh --issue -d aa.com --standalone -d www.aa.com
acme.sh --issue -d aa.com --tls -d www.aa.com
acme.sh --issue -d aa.com --dns -d www.aa.com
Cloud flare api:
export CF_Key="sdfsdfsdfljlbjkljlkjsdfoiwje"
export CF_Email="[email protected]"
acme.sh --issue -d aa.com --dns dns_cf -d www.aa.com
Issue a single cert including multiple domains. Each domain uses a different validation method.
acme.sh --issue \
-d aa.com -w /home/wwwroot/aa.com \
-d bb.com -dns dns-cf \
-d cc.com --apache \
-d dd.com -w /home/wwwroot/dd.com
Or:
acme.sh --issue \
-d aa.com --standalone \
-d bb.com -dns dns-cf \
-d cc.com --tls