1
0
Fork 0
mirror of https://github.com/overleaf/toolkit.git synced 2025-04-19 15:28:06 +02:00

Add new variables to the doctor

This commit is contained in:
Christopher Hoskin 2021-10-12 10:12:36 +01:00
parent df2c5518de
commit 8b39c8af71

View file

@ -200,6 +200,9 @@ function check_config_files() {
fi
print_point 2 "SIBLING_CONTAINERS_ENABLED: $SIBLING_CONTAINERS_ENABLED"
fi
if [[ "${SHARELATEX_LISTEN_IP:-null}" != "null" ]]; then
print_point 2 "SHARELATEX_LISTEN_IP: ${SHARELATEX_LISTEN_IP}"
fi
if [[ "${SHARELATEX_PORT:-null}" != "null" ]]; then
print_point 2 "SHARELATEX_PORT: ${SHARELATEX_PORT}"
fi
@ -239,6 +242,18 @@ function check_config_files() {
if [[ "${TLS_CERTIFICATE_PATH:-null}" != "null" ]]; then
print_point 2 "TLS_CERTIFICATE_PATH: $TLS_CERTIFICATE_PATH"
fi
if [[ "${NGINX_HTTP_LISTEN_IP:-null}" != "null" ]]; then
print_point 2 "NGINX_HTTP_LISTEN_IP: $NGINX_HTTP_LISTEN_IP"
fi
if [[ "${NGINX_HTTP_PORT:-null}" != "null" ]]; then
print_point 2 "NGINX_HTTP_PORT: $NGINX_HTTP_PORT"
fi
if [[ "${NGINX_TLS_LISTEN_IP:-null}" != "null" ]]; then
print_point 2 "NGINX_TLS_LISTEN_IP: $NGINX_TLS_LISTEN_IP"
fi
if [[ "${TLS_PORT:-null}" != "null" ]]; then
print_point 2 "TLS_PORT: $TLS_PORT"
fi
fi
fi
done