5 lines
137 B
Bash
5 lines
137 B
Bash
|
#!/usr/bin/env sh
|
||
|
|
||
|
certbot certonly --standalone -d "$DOMAINS" --email "$EMAIL" -n --agree-tos --expand
|
||
|
/usr/sbin/nginx -g "daemon off;"
|