loader

相关文章

2023年07月10日 23:00

用NGINX重写酷导M3U8地址

location ~ /live/ {
    rewrite "^\/live\/(.).m3u8$" /hls/$1/playlist.m3u8 break; 
    rewrite "^\/live\/(.)-(.*).ts$" /hls/$1/$1-$2.ts break;
    proxy_pass http://localhost:9000;
    break;
}