Update docker-entrypoint.sh
This commit is contained in:
parent
4009ca3d4d
commit
364dd72343
|
@ -4,15 +4,11 @@ PROTOCOL="${PROTOCOL:-http}"
|
||||||
|
|
||||||
# Replace placeholders with environment variable values
|
# Replace placeholders with environment variable values
|
||||||
envsubst '$BACKEND_ADDRESS $BACKEND_PORT $PROTOCOL $MATOMO_URL $MATOMO_SITE_ID' < /etc/nginx/nginx.conf.template > /etc/nginx/nginx.conf
|
envsubst '$BACKEND_ADDRESS $BACKEND_PORT $PROTOCOL $MATOMO_URL $MATOMO_SITE_ID' < /etc/nginx/nginx.conf.template > /etc/nginx/nginx.conf
|
||||||
# Substitute environment variables in matomo.js
|
|
||||||
envsubst '$MATOMO_URL $MATOMO_SITE_ID' < /matomo.js.template > /matomo.js
|
|
||||||
|
|
||||||
# Start nginx in the foreground
|
# Start nginx in the foreground
|
||||||
curl -k -I $PROTOCOL://$BACKEND_ADDRESS:$BACKEND_PORT
|
curl -k -I $PROTOCOL://$BACKEND_ADDRESS:$BACKEND_PORT
|
||||||
echo checking nginx modules
|
echo checking nginx modules
|
||||||
nginx -V 2>&1 | grep -o http_sub_module
|
nginx -V 2>&1 | grep -o http_sub_module
|
||||||
echo /matomo.js
|
|
||||||
cat /matomo.js
|
|
||||||
echo /etc/nginx/nginx.conf
|
echo /etc/nginx/nginx.conf
|
||||||
cat /etc/nginx/nginx.conf
|
cat /etc/nginx/nginx.conf
|
||||||
exec nginx -g 'daemon off;'
|
exec nginx -g 'daemon off;'
|
||||||
|
|
Loading…
Reference in New Issue