This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
self-hosting/nginx/build/entrypoint.sh

7 lines
223 B
Bash
Raw Normal View History

2021-01-04 12:38:27 +01:00
#!/usr/bin/env sh
certbot certonly --standalone -d "$MAIN_DOMAIN,$DOMAINS" --email "$EMAIL" -n --agree-tos --expand
2021-01-09 15:48:30 +01:00
# The original script handles the template subsitution
exec /docker-entrypoint.sh nginx -g "daemon off;"