add support to subdomains
This commit is contained in:
parent
87258f91e9
commit
ce79bf4732
|
@ -60,6 +60,6 @@ auto_enable_configs() {
|
||||||
get_certificate() {
|
get_certificate() {
|
||||||
echo "Getting certificate for domain $1 on behalf of user $2"
|
echo "Getting certificate for domain $1 on behalf of user $2"
|
||||||
certbot certonly --agree-tos --keep -n --text --email $2 --server \
|
certbot certonly --agree-tos --keep -n --text --email $2 --server \
|
||||||
https://acme-v01.api.letsencrypt.org/directory -d $1 --http-01-port 1337 \
|
https://acme-v01.api.letsencrypt.org/directory -d *.$1 -d $1 --http-01-port 1337 \
|
||||||
--standalone --standalone-supported-challenges http-01 --debug
|
--standalone --standalone-supported-challenges http-01 --debug
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue