mirror of
https://github.com/TeamPiped/Piped
synced 2025-09-04 04:20:59 +02:00
10 lines
204 B
Bash
Executable File
10 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;"
|