mirror of
https://github.com/linuxserver/docker-your_spotify.git
synced 2026-02-19 16:54:31 +08:00
12 lines
391 B
Plaintext
Executable File
12 lines
391 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
# shellcheck shell=bash
|
|
|
|
DEFAULT_CONF="/config/nginx/site-confs/default.conf"
|
|
OLD_ROOT="root /app/your_spotify/client/build;"
|
|
NEW_ROOT="root /app/www/client/build;"
|
|
|
|
if [[ -f "${DEFAULT_CONF}" ]] && grep -q "${OLD_ROOT}" "${DEFAULT_CONF}" 2>/dev/null; then
|
|
echo "updating root in ${DEFAULT_CONF}"
|
|
sed -i "s|${OLD_ROOT}|${NEW_ROOT}|" "${DEFAULT_CONF}"
|
|
fi
|