web: fix acme.sh pre and post hooks

Fixes: https://github.com/jitsi/docker-jitsi-meet/issues/114
pull/1087/head
Bert Driehuis 3 years ago committed by GitHub
parent 65563d9371
commit cf90461810
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      web/rootfs/etc/cont-init.d/10-config

@ -25,8 +25,8 @@ if [[ $DISABLE_HTTPS -ne 1 ]]; then
$STAGING \ $STAGING \
--issue \ --issue \
--standalone \ --standalone \
--pre-hook "if [[ -f /var/run/s6/services/nginx ]]; then s6-svc -d /var/run/s6/services/nginx; fi" \ --pre-hook "if [[ -d /var/run/s6/services/nginx ]]; then s6-svc -d /var/run/s6/services/nginx; fi" \
--post-hook "if [[ -f /var/run/s6/services/nginx ]]; then s6-svc -u /var/run/s6/services/nginx; fi" \ --post-hook "if [[ -d /var/run/s6/services/nginx ]]; then s6-svc -u /var/run/s6/services/nginx; fi" \
-d $LETSENCRYPT_DOMAIN -d $LETSENCRYPT_DOMAIN
rc=$? rc=$?
if [[ $rc -eq 1 ]]; then if [[ $rc -eq 1 ]]; then

Loading…
Cancel
Save