Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

36 wiersze
1.0 KiB

  1. # HTTP/WebSocket service.
  2. NODE_ENV=production
  3. LISTEN_IP=0.0.0.0
  4. PORT=4443
  5. # Public hostname is only used for logs/docs. Nginx usually terminates TLS/WSS.
  6. PUBLIC_BASE_URL=https://oa.qbjjyyun.net/ws_webrtc_sfu_api
  7. # Authentication is intentionally off for the first deployment.
  8. AUTH_ENABLED=false
  9. # mediasoup worker count. Leave empty to use CPU count.
  10. MEDIASOUP_WORKERS=
  11. MEDIASOUP_LOG_LEVEL=warn
  12. MEDIASOUP_LOG_TAGS=info,ice,dtls,rtp,rtcp,bwe,score,simulcast,sctp
  13. # Bindable IP on the SFU host.
  14. MEDIASOUP_LISTEN_IP=0.0.0.0
  15. # Required when MEDIASOUP_LISTEN_IP is 0.0.0.0 or the server is behind NAT.
  16. # Use the public IP or public DNS name that browsers can reach.
  17. MEDIASOUP_ANNOUNCED_ADDRESS=
  18. # UDP/TCP ports for WebRTC media. Open this whole range on firewall/security group.
  19. MEDIASOUP_RTC_MIN_PORT=40000
  20. MEDIASOUP_RTC_MAX_PORT=49999
  21. # Transport behavior.
  22. MEDIASOUP_ENABLE_UDP=true
  23. MEDIASOUP_ENABLE_TCP=true
  24. MEDIASOUP_PREFER_UDP=true
  25. MEDIASOUP_INITIAL_AVAILABLE_OUTGOING_BITRATE=1000000
  26. # Empty rooms are closed after this delay.
  27. ROOM_IDLE_TIMEOUT_MS=300000