@meetcast/hub
v0.0.77
Published
Readme
meetcast
To install dependencies:
bun installTo run:
bun run index.tsDeployment
docker compose build
docker compose down
docker compose up -d
# 重建 nginx
docker compose up -d --force-recreate --no-deps nginxThis project was created using bun init in bun v1.3.13. Bun is a fast all-in-one JavaScript runtime.
域名假设
hub.meetcast.com
meetcast 业务后端,创建会议,开启直播,管理后台需要请求的域名
g1PtzjiV-cast.meetcast.com
owncast http/ws 网关
rtmp.meetcast.com
rtmp://rtmp.meetcast.com:1935/live
修改 hosts
符号连接
ln -s /etc/hosts ./hosts
sudo chown $(whoami) ./hosts
chmod 644 ./hosts
printf "\n# ln -s /etc/hosts hosts\nhosts\n" >> .gitignore
恢复
# 恢复所有者为 root,组为 wheel
sudo chown root:wheel /etc/hosts
# 恢复标准权限(只有 root 可写,其他人只读)
sudo chmod 644 /etc/hosts
rm ./hosts