mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
9 lines
204 B
Bash
Executable file
9 lines
204 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ -z "$BACKEND_HOSTNAME" ]; then
|
|
echo "BACKEND_HOSTNAME not set"
|
|
exit 1
|
|
fi
|
|
|
|
sed -i s/pipedapi.kavin.rocks/"$BACKEND_HOSTNAME"/g /usr/share/nginx/html/assets/*
|
|
nginx -g "daemon off;"
|