@@ -168,12 +168,18 @@ configureCerts() {
168
168
;;
169
169
esac
170
170
if [ ! -e " $DATA_DIR /certs/zulip.key" ] && [ ! -e " $DATA_DIR /certs/zulip.combined-chain.crt" ]; then
171
+
171
172
if [ " $GENERATE_CERTBOT_CERT " = " True" ]; then
172
- echo " Certbot not yet supported"
173
- exit 1
174
- # TODO: Run setup-certbot and move /etc/letsencrypt to the data dir?
175
- # /home/zulip/deployments/current/setup/setup-certbot "$SETTING_EXTERNAL_HOST"
176
- elif [ " $GENERATE_SELF_SIGNED_CERT " = " True" ]; then
173
+ # Zulip isn't yet running, so the certbot's challenge can't be met.
174
+ # We'll schedule this for later.
175
+ echo " Scheduling LetsEncrypt cert generation ..."
176
+ GENERATE_CERTBOT_CERT_SCHEDULED=True
177
+
178
+ # Generate self-signed certs just to get Zulip going.
179
+ GENERATE_SELF_SIGNED_CERT=True
180
+ fi
181
+
182
+ if [ " $GENERATE_SELF_SIGNED_CERT " = " True" ]; then
177
183
echo " Generating self-signed certificates ..."
178
184
mkdir -p " $DATA_DIR /certs"
179
185
/home/zulip/deployments/current/scripts/setup/generate-self-signed-cert " $SETTING_EXTERNAL_HOST "
@@ -407,12 +413,43 @@ runPostSetupScripts() {
407
413
set -e
408
414
echo " Post setup scripts execution succeeded."
409
415
}
416
+ function runCertbotAsNeeded() {
417
+ if [ ! " $GENERATE_CERTBOT_CERT_SCHEDULED " = " True" ]; then
418
+ echo " Certbot is not scheduled to run."
419
+ return
420
+ fi
421
+
422
+ echo " Waiting for nginx to come online before generating certbot certificate ..."
423
+ while ! curl -sk " $SETTING_EXTERNAL_HOST " > /dev/null 2>&1 ; do
424
+ sleep 1;
425
+ done
426
+
427
+ echo " Generating LetsEncrypt/certbot certificate ..."
428
+
429
+ # Remove the self-signed certs which were only needed to get Zulip going.
430
+ rm -f " $DATA_DIR " /certs/zulip.key " $DATA_DIR " /certs/zulip.combined-chain.crt
431
+
432
+ ZULIP_CERTBOT_DEPLOY_HOOK=" /sbin/certbot-deploy-hook"
433
+
434
+ # Accept the terms of service automatically.
435
+ /home/zulip/deployments/current/scripts/setup/setup-certbot \
436
+ --agree-tos \
437
+ --hostname=" $SETTING_EXTERNAL_HOST " \
438
+ --email=" $SETTING_ZULIP_ADMINISTRATOR " \
439
+ --deploy-hook " $ZULIP_CERTBOT_DEPLOY_HOOK "
440
+
441
+ echo " LetsEncrypt cert generated."
442
+ }
410
443
bootstrappingEnvironment () {
411
444
echo " === Begin Bootstrap Phase ==="
412
445
waitingForDatabase
413
446
zulipFirstStartInit
414
447
zulipMigration
415
448
runPostSetupScripts
449
+ # Hack: We run this in the background, since we need nginx to be
450
+ # started before we can create the certificate. See #142 for
451
+ # details on how we can clean this up.
452
+ runCertbotAsNeeded &
416
453
echo " === End Bootstrap Phase ==="
417
454
}
418
455
# END appRun functions
0 commit comments