Fix stray space in entrypoint

Signed-off-by: James Ketrenos <james_git@ketrenos.com>
This commit is contained in:
James Ketr 2023-01-19 01:50:31 -08:00
parent 5f1d9e3c92
commit b4ad48f6d6

View File

@ -4,7 +4,7 @@ if [[ "${TARGET_PORT}" != "" ]]; then
sed -i -e "s,8123,${TARGET_PORT},g" /etc/nginx/sites-enabled/default sed -i -e "s,8123,${TARGET_PORT},g" /etc/nginx/sites-enabled/default
fi fi
if [[ "${BASE_PATH}" != "" ]]; then if [[ "${BASE_PATH}" != "" ]]; then
sed -i -e "s,/ident,${BASE_PATH}/ident,g" \ sed -i -e "s,/ident,${BASE_PATH}/ident,g" \
/etc/nginx/snippets/active.location /etc/nginx/snippets/active.location
fi fi