mirror of
git://f0xx.org/ac/ac-deploy
synced 2026-07-29 05:19:12 +03:00
deploy-janus-sfu.sh installs Janus on cast02, writes signaling config, and templates CAST02_IP into nginx; populate gains --phase sfu. Co-authored-by: Cursor <cursoragent@cursor.com>
29 lines
1.2 KiB
Bash
29 lines
1.2 KiB
Bash
#!/bin/sh
|
|
set -eu
|
|
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
|
|
# shellcheck source=/dev/null
|
|
. "$ROOT/scripts/lib/common.sh"
|
|
ensure_shared_mounted
|
|
|
|
# Prefer the git repo nginx template over the shared cluster copy (keeps nginx config up to date
|
|
# with submodule commits). Falls back to the shared copy if git repo unavailable.
|
|
GIT_NGINX="/mnt/repos/ac/ac-deploy/sim/cluster0/nginx/apps-port80.conf"
|
|
CONF_DST="$ROOT/nginx/apps-port80.conf"
|
|
if [ -f "$GIT_NGINX" ] && [ "$(realpath "$GIT_NGINX" 2>/dev/null)" != "$(realpath "$CONF_DST" 2>/dev/null)" ]; then
|
|
if [ -s "$GIT_NGINX" ]; then
|
|
install -D -m 644 "$GIT_NGINX" "$CONF_DST"
|
|
else
|
|
log "WARN: skip empty GIT_NGINX at $GIT_NGINX"
|
|
fi
|
|
fi
|
|
[ -s "$CONF_DST" ] || die "missing or empty nginx template at $CONF_DST"
|
|
load_cluster_env 2>/dev/null || true
|
|
CAST02_IP="${CAST02_IP:-10.7.16.237}"
|
|
sed "s/@CAST02_IP@/${CAST02_IP}/g" "$CONF_DST" > /tmp/androidcast.conf.$$
|
|
install -D -m 644 /tmp/androidcast.conf.$$ /etc/nginx/http.d/androidcast.conf
|
|
rm -f /tmp/androidcast.conf.$$
|
|
rm -f /etc/nginx/http.d/default.conf /etc/nginx/http.d/cluster.conf 2>/dev/null || true
|
|
nginx -t
|
|
rc-service nginx reload
|
|
log "nginx androidcast vhost installed"
|