File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
overlay/etc/periodic/daily Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1717 # the base URI of the proxy server (will be used when SSL bindings fail)
1818 # set to 1 to use live instead of staging server
1919 PROXY_LETS_ENCRYPT_LIVE=0 \
20+ # enable automatic certificate updating
21+ PROXY_ENABLE_AUTO_UPDATE=1 \
2022 # set to the number of bits to use for generating private key
2123 PROXY_SSL_KEY_BITS=4096 \
2224 # set to the number of bits to use for generating DHPARAM
Original file line number Diff line number Diff line change 1- 3.3.10
1+ 3.3.11
Original file line number Diff line number Diff line change @@ -8,4 +8,6 @@ export BF_E=`basename ${0}`
88# Run SSL update executable and log output to /ssl directory.
99#======================================================================================================================
1010
11- ssl-update > ${PROXY_SSL}/update.log
11+ if [ "${PROXY_ENABLE_AUTO_UPDATE}" = "1" ] ; then
12+ ssl-update > ${PROXY_SSL}/update.log
13+ fi
You can’t perform that action at this time.
0 commit comments