Merge pull request #2519 from tkalus/tk-2474-dup_nginx_server_name

Fix for #2474
This commit is contained in:
Jose Diaz-Gonzalez
2017-01-13 22:34:17 -07:00
committed by GitHub

View File

@@ -272,7 +272,14 @@ nginx_build_config() {
else
local SSL_VHOSTS=$(< "$DOKKU_ROOT/HOSTNAME")
fi
local SSL_SERVER_NAME=$(echo "$SSL_VHOSTS" | xargs)
local SSL_SERVER_NAME
local host
for host in $SSL_VHOSTS; do
# SSL_SERVER_NAME should only contain items not in NOSSL_SERVER_NAME
if [[ ! $NOSSL_SERVER_NAME =~ (^|[[:space:]])$host($|[[:space:]]) ]]; then
SSL_SERVER_NAME="${host}${SSL_SERVER_NAME:+ $SSL_SERVER_NAME}"
fi
done
fi
local NGINX_VERSION="$(nginx -v 2>&1 | cut -d'/' -f 2)"