aboutsummaryrefslogtreecommitdiffstats
path: root/nginx-entrypoint.sh
blob: 6518f10dd45ac304703ab2626d1900c6ff3c01f5 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

WWW_DIR=/usr/share/nginx/html
INJECT_FILE_SRC="${WWW_DIR}/inject.template.js"
INJECT_FILE_DST="${WWW_DIR}/inject.js"

envsubst < "${INJECT_FILE_SRC}" > "${INJECT_FILE_DST}"

[ -z "$@" ] && nginx -g 'daemon off;' || $@