fix(SCRIPT): fix erroneous DHparam check when not using SSL

This commit is contained in:
Asif Bacchus 2021-01-06 00:59:52 -07:00
parent 5a313ea778
commit d3b9229d85
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ if [ "$SSL_KEY" ]; then checkExist 'file' "$SSL_KEY"; fi
if [ "$SSL_CHAIN" ]; then checkExist 'file' "$SSL_CHAIN"; fi
# check for DHparam if using TLS1.2
if [ "$TLS13_ONLY" = 'FALSE' ]; then
if [ "$SSL_CERT" ] && [ "$TLS13_ONLY" = 'FALSE' ]; then
if [ -z "$DH" ]; then
printf "%s\nA DHparam file must be specified when using TLS 1.2. Exiting.%s\n" "$err" "$norm"
exit 5