添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
英姿勃勃的斑马  ·  通过Linux ...·  8 分钟前    · 
痴情的领结  ·  openwrt ...·  21 小时前    · 
温柔的泡面  ·  ES 和 Clickhouse ...·  3 天前    · 
安静的羽毛球  ·  【WSL ...·  3 天前    · 
自信的小狗  ·  EV 标签·  1 周前    · 
成熟的打火机  ·  kube_pod_container_sta ...·  1 月前    · 
大气的稀饭  ·  领区概况·  2 月前    · 
Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Teams

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Learn more about Teams

How do set up a Docker container with the 'tiredofit/freepbx' image to establish a WebSocket connection using SIP.js?

Ask Question

I have already set up my FreePBX application and tested it with Linphone. Now, I need to configure SIP.js to enable WebSocket connections. How can I do this?"

docker-compose.yaml

version: '2'
services:
  freepbx-app:
    container_name: freepbx-app
    image: tiredofit/freepbx
    ports:
      - 8010:80                     
      - 5060:5060/udp               
      - 5060:5060/tcp
      - 5160:5160/udp             
      - 5160:5160/tcp
      - 18000-18100:18000-18100/udp   
      - 4445:4445                 
      - 4080:443                
    volumes:
      - ./certs:/certs
      - ./data:/data
      - ./logs:/var/log
      - ./data/www:/var/www/html
    environment:
      - VIRTUAL_HOST=pbx.co.in
      - VIRTUAL_NETWORK=nginx-proxy
      - VIRTUAL_PORT=8010
      - ZABBIX_HOSTNAME=freepbx-app
      - RTP_START=18000
      - RTP_FINISH=18100
      - DB_EMBEDDED=FALSE
      - DB_HOST=freepbx-db
      - DB_PORT=3306
      - DB_NAME=asterisk
      - DB_USER=asterisk
      - DB_PASS=asteriskpass
      - TLS_CERT=cert.pem
      - TLS_KEY=key.pem
    restart: always
    networks:
      - proxy-tier
    cap_add:
      - NET_ADMIN
    privileged: true
  freepbx-db:
    container_name: freepbx-db
    image: tiredofit/mariadb
    restart: always
    volumes:
      - ./db:/var/lib/mysql
    environment:
      - MYSQL_ROOT_PASSWORD=password
      - MYSQL_DATABASE=asterisk
      - MYSQL_USER=asterisk
      - MYSQL_PASSWORD=asteriskpass
    networks:
      - proxy-tier
  freepbx-db-backup:
    container_name: freepbx-db-backup
    image: tiredofit/db-backup
    links:
      - freepbx-db
    volumes:
      - ./dbbackup:/backup
    environment:
      - ZABBIX_HOSTNAME=freepbx-db-backup
      - DB_HOST=freepbx-db
      - DB_TYPE=mariadb
      - DB_NAME=asterisk
      - DB_USER=asterisk
      - DB_PASS=asteriskpass
      - DB_DUMP_FREQ=1440
      - DB_DUMP_BEGIN=0000
      - DB_CLEANUP_TIME=8640
      - COMPRESSION=BZ
      - MD5=TRUE
    networks:
      - proxy-tier
    restart: always
networks:
  proxy-tier:
    external:
      name: nginx-proxy

I need to establish a WebSocket connection on FreePBX and configure it for use with SIP.js. Any help or solutions would be greatly helpful.

Thanks for contributing an answer to Stack Overflow!

  • Please be sure to answer the question. Provide details and share your research!

But avoid

  • Asking for help, clarification, or responding to other answers.
  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.