export case consistent env vars

This commit is contained in:
Asif Bacchus 2019-11-16 17:33:25 -07:00
parent eebef6b7bc
commit 61b0eb31d1

View File

@ -10,9 +10,9 @@ convertCase () {
} }
# convert environment variables to UPPERCASE for proper string comparison # convert environment variables to UPPERCASE for proper string comparison
ACCESS_LOG=$(convertCase "$ACCESS_LOG") export ACCESS_LOG=$(convertCase "$ACCESS_LOG")
HSTS=$(convertCase "$HSTS") export HSTS=$(convertCase "$HSTS")
TLS13_ONLY=$(convertCase "$TLS13_ONLY") export TLS13_ONLY=$(convertCase "$TLS13_ONLY")
### update configuration files with environment variables ### update configuration files with environment variables
# update server name list # update server name list