Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ ENV \
# the base URI of the proxy server (will be used when SSL bindings fail)
# set to 1 to use live instead of staging server
PROXY_LETS_ENCRYPT_LIVE=0 \
# enable automatic certificate updating
PROXY_ENABLE_AUTO_UPDATE=1 \
# set to the number of bits to use for generating private key
PROXY_SSL_KEY_BITS=4096 \
# set to the number of bits to use for generating DHPARAM
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.10
3.3.11
4 changes: 3 additions & 1 deletion overlay/etc/periodic/daily/update-certs
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ export BF_E=`basename ${0}`
# Run SSL update executable and log output to /ssl directory.
#======================================================================================================================

ssl-update > ${PROXY_SSL}/update.log
if [ "${PROXY_ENABLE_AUTO_UPDATE}" = "1" ] ; then
ssl-update > ${PROXY_SSL}/update.log
fi