1
0
mirror of git://f0xx.org/ac/ac-deploy synced 2026-07-29 06:38:18 +03:00
Files
ac-deploy/sim/cluster0/scripts/configure-nginx.sh
Anton Afanasyeu 7f3e4fea9f initial
2026-06-23 12:21:14 +02:00

13 lines
389 B
Bash

#!/bin/sh
set -eu
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
# shellcheck source=/dev/null
. "$ROOT/scripts/lib/common.sh"
ensure_shared_mounted
install -D -m 644 "$ROOT/nginx/apps-port80.conf" /etc/nginx/http.d/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"