From e9323ca268d2f5efd35cbecdfb41467698ce2cfc Mon Sep 17 00:00:00 2001 From: DQ Date: Wed, 19 Aug 2020 10:33:19 +0800 Subject: [PATCH] Fix schema of the portal health check it should be https Signed-off-by: DQ --- make/photon/portal/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/photon/portal/Dockerfile b/make/photon/portal/Dockerfile index 571586983..d5a3463f2 100644 --- a/make/photon/portal/Dockerfile +++ b/make/photon/portal/Dockerfile @@ -41,7 +41,7 @@ VOLUME /var/cache/nginx /var/log/nginx /run STOPSIGNAL SIGQUIT -HEALTHCHECK CMD curl --fail -s http://127.0.0.1:8080 || curl --fail -s http://127.0.0.1:8443 || exit 1 +HEALTHCHECK CMD curl --fail -s http://127.0.0.1:8080 || curl -k --fail -s https://127.0.0.1:8443 || exit 1 USER nginx CMD ["nginx", "-g", "daemon off;"]