From d8948656a9eb0b86543de65519538ffdd1b05a6a Mon Sep 17 00:00:00 2001 From: Alexey Zhokhov Date: Mon, 30 Oct 2017 01:34:58 +0800 Subject: [PATCH] Fixed https in App.fullBaseUrl for SSL=false. --- bin/docker-entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/docker-entrypoint.sh b/bin/docker-entrypoint.sh index 201a0d5..d0725a3 100755 --- a/bin/docker-entrypoint.sh +++ b/bin/docker-entrypoint.sh @@ -52,7 +52,7 @@ core_setup() { sed -i s:$default_seed:${CIPHERSEED:-$default_seed}:g $core_config sed -i "/example.com/ s:\/\/::" $core_config sed -i s:example.com:${URL:-$default_url}:g $core_config - if [ "$ssl" != false ]; then + if [ "${SSL:-true}" != false ]; then sed -i s:http:https:g $core_config fi }