2
0

env.example 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. # Let's Encrypt configuration
  17. #
  18. # Enable Let's Encrypt certificate generation.
  19. #ENABLE_LETSENCRYPT=1
  20. # Domain for which to generate the certificate.
  21. #LETSENCRYPT_DOMAIN=meet.example.com
  22. # E-Mail for receiving important account notifications (mandatory).
  23. #LETSENCRYPT_EMAIL=alice@atlanta.net
  24. #
  25. # Basic Jigasi configuration options (needed for SIP gateway support)
  26. #
  27. # SIP URI for incoming / outgoing calls.
  28. #JIGASI_SIP_URI=test@sip2sip.info
  29. # Password for the specified SIP account as a clear text
  30. #JIGASI_SIP_PASSWORD=passw0rd
  31. # SIP server (use the SIP account domain if in doubt).
  32. #JIGASI_SIP_SERVER=sip2sip.info
  33. # SIP server port
  34. #JIGASI_SIP_PORT=5060
  35. # SIP server transport
  36. #JIGASI_SIP_TRANSPORT=UDP
  37. #
  38. # Authentication configuration (see README for details)
  39. #
  40. # Enable authentication.
  41. #ENABLE_AUTH=1
  42. # Enable guest access.
  43. #ENABLE_GUESTS=1
  44. #
  45. # Advanced configuration options (you generally don't need to change these)
  46. #
  47. # Internal XMPP domain.
  48. XMPP_DOMAIN=meet.jitsi
  49. # Internal XMPP domain for authenticated services.
  50. XMPP_AUTH_DOMAIN=auth.meet.jitsi
  51. # XMPP domain for the MUC.
  52. XMPP_MUC_DOMAIN=muc.meet.jitsi
  53. # XMPP domain for the internal MUC used for jibri, jigasi and jvb pools.
  54. XMPP_INTERNAL_MUC_DOMAIN=internal-muc.meet.jitsi
  55. # XMPP domain for unauthenticated users.
  56. XMPP_GUEST_DOMAIN=guest.meet.jitsi
  57. # Custom Prosody modules for XMPP_DOMAIN (comma separated)
  58. XMPP_MODULES=
  59. # Custom Prosody modules for MUC component (comma separated)
  60. XMPP_MUC_MODULES=
  61. # Custom Prosody modules for internal MUC component (comma separated)
  62. XMPP_INTERNAL_MUC_MODULES=
  63. # MUC for the JVB pool.
  64. JVB_BREWERY_MUC=jvbbrewery
  65. # XMPP user for JVB client connections.
  66. JVB_AUTH_USER=jvb
  67. # XMPP password for JVB client connections.
  68. JVB_AUTH_PASSWORD=passw0rd
  69. # STUN servers used to discover the server's public IP.
  70. JVB_STUN_SERVERS=stun.l.google.com:19302,stun1.l.google.com:19302,stun2.l.google.com:19302
  71. # Media port for the Jitsi Videobridge
  72. JVB_PORT=10000
  73. # TCP Fallback for Jitsi Videobridge for when UDP isn't available
  74. JVB_TCP_HARVESTER_DISABLED=true
  75. JVB_TCP_PORT=4443
  76. # A comma separated list of APIs to enable when the JVB is started. The default is none.
  77. # See https://github.com/jitsi/jitsi-videobridge/blob/master/doc/rest.md for more information
  78. #JVB_ENABLE_APIS=rest,colibri
  79. # XMPP component password for Jicofo.
  80. JICOFO_COMPONENT_SECRET=s3cr37
  81. # XMPP user for Jicofo client connections. NOTE: this option doesn't currently work due to a bug.
  82. JICOFO_AUTH_USER=focus
  83. # XMPP password for Jicofo client connections.
  84. JICOFO_AUTH_PASSWORD=passw0rd
  85. # XMPP user for Jigasi MUC client connections.
  86. JIGASI_XMPP_USER=jigasi
  87. # XMPP password for Jigasi MUC client connections.
  88. JIGASI_XMPP_PASSWORD=passw0rd
  89. # MUC name for the Jigasi pool.
  90. JIGASI_BREWERY_MUC=jigasibrewery
  91. # Minimum port for media used by Jigasi.
  92. JIGASI_PORT_MIN=20000
  93. # Maximum port for media used by Jigasi.
  94. JIGASI_PORT_MAX=20050
  95. # Disable HTTPS. This can be useful if TLS connections are going to be handled outside of this setup.
  96. #DISABLE_HTTPS=1
  97. # Redirects HTTP traffic to HTTPS. Only works with the standard HTTPS port (443).
  98. #ENABLE_HTTP_REDIRECT=1