This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
|
#!/usr/bin/env sh
|
|
|
|
certbot certonly --standalone -d "$MAIN_DOMAIN,$DOMAINS" --email "$EMAIL" -n --agree-tos --expand
|
|
|
|
# The original script handles the template subsitution
|
|
exec /docker-entrypoint.sh nginx -g "daemon off;"
|