Fix schema of the portal health check

it should be https

Signed-off-by: DQ <dengq@vmware.com>
This commit is contained in:
DQ 2020-08-19 10:33:19 +08:00
parent eb317fb8cb
commit e9323ca268
1 changed files with 1 additions and 1 deletions

View File

@ -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;"]