2
0

env.example 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. #
  2. # Basic configuration options
  3. #
  4. # Directory where all configuration will be stored.
  5. CONFIG=~/.jitsi-meet-cfg
  6. # Exposed HTTP port.
  7. HTTP_PORT=8000
  8. # Exposed HTTPS port.
  9. HTTPS_PORT=8443
  10. # System time zone.
  11. TZ=Europe/Amsterdam
  12. # IP address of the Docker host. See the "Running on a LAN environment" section
  13. # in the README.
  14. #DOCKER_HOST_ADDRESS=192.168.1.1
  15. #
  16. # Basic Jigasi configuration options (needed for SIP gateway support)
  17. #
  18. # SIP URI for incoming / outgoing calls
  19. #JIGASI_SIP_URI=test@sip2sip.info
  20. # Password for the specified SIP account
  21. #JIGASI_SIP_PASSWORD=passw0rd
  22. # SIP server (use the SIP account domain if in doubt)
  23. #JIGASI_SIP_SERVER=sip2sip.info
  24. #
  25. # Advanced configuration options (you generally don't need to change these)
  26. #
  27. # Internal XMPP domain.
  28. XMPP_DOMAIN=meet.jitsi
  29. # Internal XMPP domain for authenticated services.
  30. XMPP_AUTH_DOMAIN=auth.meet.jitsi
  31. # XMPP BOSH URL base.
  32. XMPP_BOSH_URL_BASE=http://xmpp.meet.jitsi:5280
  33. # XMPP domain for the MUC.
  34. XMPP_MUC_DOMAIN=muc.meet.jitsi
  35. # XMPP domain for the internal MUC used for jibri, jigasi and jvb pools.
  36. XMPP_INTERNAL_MUC_DOMAIN=internal-muc.meet.jitsi
  37. # MUC for the JVB pool.
  38. JVB_BREWERY_MUC=jvbbrewery
  39. # XMPP user for JVB client connections.
  40. JVB_AUTH_USER=jvb
  41. # XMPP password for JVB client connections.
  42. JVB_AUTH_PASSWORD=passw0rd
  43. # STUN servers used to discover the server's public IP.
  44. JVB_STUN_SERVERS=stun.l.google.com:19302,stun1.l.google.com:19302,stun2.l.google.com:19302
  45. # Media port for the Jitsi Videobridge
  46. JVB_PORT=10000
  47. # XMPP component password for Jicofo.
  48. JICOFO_COMPONENT_SECRET=s3cr37
  49. # XMPP user for Jicofo client connections. NOTE: this option doesn't currently work due to a bug.
  50. JICOFO_AUTH_USER=focus
  51. # XMPP password for Jicofo client connections.
  52. JICOFO_AUTH_PASSWORD=passw0rd
  53. # XMPP user for Jigasi MUC client connections.
  54. JIGASI_XMPP_USER=jigasi
  55. # XMPP password for Jigasi MUC client connections.
  56. JIGASI_XMPP_PASSWORD=passw0rd
  57. # MUC name for the Jigasi pool.
  58. JIGASI_BREWERY_MUC=jigasibrewery
  59. # Minimum port for media used by Jigasi.
  60. JIGASI_PORT_MIN=20000
  61. # Maximum port for media used by Jigasi.
  62. JIGASI_PORT_MAX=20050