You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

jitsi-meet.conf 648B

123456789101112131415161718192021222324252627282930
  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. stream {
  5. upstream web {
  6. server 127.0.0.1:4444;
  7. }
  8. upstream turn {
  9. server 127.0.0.1:4445;
  10. }
  11. # since 1.13.10
  12. map $ssl_preread_alpn_protocols $upstream {
  13. ~\bh2\b web;
  14. ~\bhttp/1\. web;
  15. default turn;
  16. }
  17. server {
  18. listen 443;
  19. listen [::]:443;
  20. # since 1.11.5
  21. ssl_preread on;
  22. proxy_pass $upstream;
  23. # Increase buffer to serve video
  24. proxy_buffer_size 10m;
  25. }
  26. }