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


正在加载...
取消
保存