IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
瀏覽代碼

Yet better way of initial run of certbot.

master
父節點
當前提交
9014c5831f
共有 1 個檔案被更改,包括 6 行新增3 行删除
  1. +6
    -3
      example/gateway/focker-compose.yml

+ 6
- 3
example/gateway/focker-compose.yml 查看文件

@@ -35,9 +35,12 @@ jails:
certbot-data: /usr/local/etc/letsencrypt
certbot-webroot: /certbot/webroot
exec.start: |
rm -vf /usr/local/etc/letsencrypt/.ready && \
( ( /usr/local/bin/python3 /certbot/scripts/certbot.py && \
touch /usr/local/etc/letsencrypt/.ready ) & ) && \
if [ ! -f /certbot/data/.ready ]; then
rm -vf /usr/local/etc/letsencrypt/.ready && \
/usr/local/bin/python3 /certbot/scripts/certbot.py && \
touch /usr/local/etc/letsencrypt/.ready && \
touch /certbot/data/.ready;
fi && \
/bin/sh /etc/rc
ip4.addr: 127.0.13.1


Loading…
取消
儲存