1
0
mirror of git://f0xx.org/ac/ac-deploy synced 2026-07-29 04:19:00 +03:00

Enable lab media_pipelines in composed config and wire ac-ms-media-transcode.

Overlay media pipeline PHP/JS/SQL on compose, nginx HLS location, enable
feature in lab config.php, and ensure media storage dirs on BE nodes.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Anton Afanasyeu
2026-07-11 15:27:01 +02:00
parent 54174e7497
commit b8bd0e673c
9 changed files with 898 additions and 0 deletions

View File

@@ -276,6 +276,18 @@ server {
client_max_body_size 512m;
}
# ── Media pipelines HLS (streaming_v2 experimental) ─────────────────────
location ^~ /app/androidcast_project/media/hls/ {
alias /var/www/ac/media-pipelines/hls/;
add_header Cache-Control "no-cache";
add_header Access-Control-Allow-Origin "*";
types {
application/vnd.apple.mpegurl m3u8;
video/mp2t ts;
}
default_type application/vnd.apple.mpegurl;
}
# ── SFU signaling — Janus Gateway WebRTC backend ─────────────────────────
# REST API → PHP signaling service
location /app/androidcast_project/sfu/api/ {