Skip to content

Commit f846db1

Browse files
authored
v3.3.11 (#90)
Minor updates * Adding PROXY_ENABLE_AUTO_UPDATE to allow update disabling
1 parent f638855 commit f846db1

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ ENV \
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

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.10
1+
3.3.11

overlay/etc/periodic/daily/update-certs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)