收起左侧

各位大神好,想要一个**式搭建jitsi-meet的教程。

2
回复
44
查看
[ 复制链接 ]

3

主题

6

回帖

0

牛值

江湖小虾

悬赏15飞牛币未解决

RT↑,各位大神好,想要一个**式搭建jitsi-meet的教程。

官方GitHub地址: https://github.com/jitsi/jitsi-meet

官方文档:https://jitsi.github.io/handbook/docs/intro/

收藏
送赞
分享

1

主题

1020

回帖

80

牛值

社区共建团

社区共建团荣誉勋章飞牛百度网盘玩家

参考:https://zhuanlan.zhihu.com/p/1909276621740941945

冬眠~Connection refused.

3

主题

480

回帖

0

牛值

社区共建团

# jitsi
services:
  web:
    image: jitsi/web:latest
    container_name: jitsi
    network_mode: bridge   
    restart: unless-stopped
    ports:
      - "1180:80"
      - "10443:443"
      - "11443:8443"
    volumes:
      - ./web:/config
      - ./letsencrypt:/etc/letsencrypt
    environment:
      - PUBLIC_URL=https://meet.example.com
      - ENABLE_AUTH=0
      - ENABLE_RECORDING=1
      - ENABLE_XMPP_WEBSOCKET=1
      - ENABLE_TURN=1
      - TURN_CREDENTIALS=your_turn_credentials
      - TURN_SERVER=turn:turn.example.com
      - TZ=Asia/Shanghai
    depends_on:
      - prosody
      - jicofo
      - jvb

  prosody:
    image: jitsi/prosody:latest
    volumes:
      - ./prosody:/config
      - ./prosody/certs:/prosody/certs
    environment:
      - XMPP_DOMAIN=meet.example.com
      - XMPP_AUTH_DOMAIN=auth.meet.example.com
      - XMPP_MODULES=mod_roster,mod_mam,mod_websocket
      - PROSODY_SSL_CERT=/prosody/certs/fullchain.pem
      - PROSODY_SSL_KEY=/prosody/certs/privkey.pem

  jicofo:
    image: jitsi/jicofo:latest
    volumes:
      - ./jicofo:/config
    environment:
      - XMPP_DOMAIN=meet.example.com
      - XMPP_SERVER=prosody
      - XMPP_SECRET=your_jicofo_secret
      - JICOFO_ENABLE_BRIDGE_HEALTH_CHECKS=1

  jvb:
    image: jitsi/jvb:latest
    ports:
      - "10000:10000/udp"
    volumes:
      - ./jvb:/config
    environment:
      - DOCKER_HOST_ADDRESS=your_server_ip
      - XMPP_SERVER=prosody
      - JVB_PORT=10000
    privileged: true

volumes:
  web:
  prosody:
  jicofo:
  jvb:
  letsencrypt:
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则