您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

jitsi-meet.conf 952B

12345678910111213141516171819202122232425262728293031323334
  1. # this is jitsi-meet nginx module configuration
  2. # this forward all http traffic to the nginx virtual host port
  3. # and the rest to the turn server
  4. #
  5. # Multiplexing based on ALPN is DEPRECATED. ALPN does not play well with websockets on some browsers and reverse proxies.
  6. # To migrate away from using it read: https://jitsi.org/multiplexing-to-bridge-ws-howto
  7. # This file will be removed at some point and if deployment is still using it, will break.
  8. #
  9. stream {
  10. upstream web {
  11. server 127.0.0.1:4444;
  12. }
  13. upstream turn {
  14. server 127.0.0.1:5349;
  15. }
  16. # since 1.13.10
  17. map $ssl_preread_alpn_protocols $upstream {
  18. ~\bh2\b web;
  19. ~\bhttp/1\. web;
  20. default turn;
  21. }
  22. server {
  23. listen 443;
  24. listen [::]:443;
  25. # since 1.11.5
  26. ssl_preread on;
  27. proxy_pass $upstream;
  28. # Increase buffer to serve video
  29. proxy_buffer_size 10m;
  30. }
  31. }