浏览代码

acme: changed the threshold for certificate renewal

The threshold for certificate renewal is changed to 30 days before
expiry date (was 14 days).
fixes #2607
Arlon1 6 年之前
父节点
当前提交
2d5add5a13
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      data/Dockerfiles/acme/docker-entrypoint.sh

+ 2 - 2
data/Dockerfiles/acme/docker-entrypoint.sh

@@ -428,8 +428,8 @@ while true; do
 
   if [[ ${SAN_CHANGE} == 0 ]]; then
     # Certificate did not change but could be due for renewal (4 weeks)
-    if ! openssl x509 -checkend 1209600 -noout -in ${ACME_BASE}/cert.pem; then
-      log_f "Certificate is due for renewal (< 2 weeks)"
+    if ! openssl x509 -checkend 2592000 -noout -in ${ACME_BASE}/cert.pem; then
+      log_f "Certificate is due for renewal (< 30 days)"
     else
       log_f "Certificate validation done, neither changed nor due for renewal, sleeping for another day."
       sleep 1d