env.example 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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. # Enable authentication via JWT tokens.
  45. #JWT_ENABLE_TOKEN_AUTH=1
  46. # Application identifier.
  47. #JWT_APP_ID=my_jitsi_app_id
  48. # Application secret known only to your token.
  49. #JWT_APP_SECRET=my_jitsi_app_secret
  50. # (Optional) Set asap_accepted_issuers as a comma separated list.
  51. #JWT_ACCEPTED_ISSUERS=my_web_client,my_app_client
  52. # (Optional) Set asap_accepted_audiences as a comma separated list.
  53. #JWT_ACCEPTED_AUDIENCES=my_server1,my_server2
  54. #
  55. # Advanced configuration options (you generally don't need to change these)
  56. #
  57. # Internal XMPP domain.
  58. XMPP_DOMAIN=meet.jitsi
  59. # Internal XMPP domain for authenticated services.
  60. XMPP_AUTH_DOMAIN=auth.meet.jitsi
  61. # XMPP domain for the MUC.
  62. XMPP_MUC_DOMAIN=muc.meet.jitsi
  63. # XMPP domain for the internal MUC used for jibri, jigasi and jvb pools.
  64. XMPP_INTERNAL_MUC_DOMAIN=internal-muc.meet.jitsi
  65. # XMPP domain for unauthenticated users.
  66. XMPP_GUEST_DOMAIN=guest.meet.jitsi
  67. # Custom Prosody modules for XMPP_DOMAIN (comma separated)
  68. XMPP_MODULES=
  69. # Custom Prosody modules for MUC component (comma separated)
  70. XMPP_MUC_MODULES=
  71. # Custom Prosody modules for internal MUC component (comma separated)
  72. XMPP_INTERNAL_MUC_MODULES=
  73. # MUC for the JVB pool.
  74. JVB_BREWERY_MUC=jvbbrewery
  75. # XMPP user for JVB client connections.
  76. JVB_AUTH_USER=jvb
  77. # XMPP password for JVB client connections.
  78. JVB_AUTH_PASSWORD=passw0rd
  79. # STUN servers used to discover the server's public IP.
  80. JVB_STUN_SERVERS=stun.l.google.com:19302,stun1.l.google.com:19302,stun2.l.google.com:19302
  81. # Media port for the Jitsi Videobridge
  82. JVB_PORT=10000
  83. # TCP Fallback for Jitsi Videobridge for when UDP isn't available
  84. JVB_TCP_HARVESTER_DISABLED=true
  85. JVB_TCP_PORT=4443
  86. # A comma separated list of APIs to enable when the JVB is started. The default is none.
  87. # See https://github.com/jitsi/jitsi-videobridge/blob/master/doc/rest.md for more information
  88. #JVB_ENABLE_APIS=rest,colibri
  89. # XMPP component password for Jicofo.
  90. JICOFO_COMPONENT_SECRET=s3cr37
  91. # XMPP user for Jicofo client connections. NOTE: this option doesn't currently work due to a bug.
  92. JICOFO_AUTH_USER=focus
  93. # XMPP password for Jicofo client connections.
  94. JICOFO_AUTH_PASSWORD=passw0rd
  95. # XMPP user for Jigasi MUC client connections.
  96. JIGASI_XMPP_USER=jigasi
  97. # XMPP password for Jigasi MUC client connections.
  98. JIGASI_XMPP_PASSWORD=passw0rd
  99. # MUC name for the Jigasi pool.
  100. JIGASI_BREWERY_MUC=jigasibrewery
  101. # Minimum port for media used by Jigasi.
  102. JIGASI_PORT_MIN=20000
  103. # Maximum port for media used by Jigasi.
  104. JIGASI_PORT_MAX=20050
  105. # Disable HTTPS. This can be useful if TLS connections are going to be handled outside of this setup.
  106. #DISABLE_HTTPS=1
  107. # Redirects HTTP traffic to HTTPS. Only works with the standard HTTPS port (443).
  108. #ENABLE_HTTP_REDIRECT=1