archivos de configuracion, scripts y assets customizados de greenlight, scalelite y bigbluebutton
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

greenlight.nginx 987B

123456789101112131415161718192021222324252627
  1. # Routes requests to Greenlight based on the '/b' prefix.
  2. # Use this file to route '/b' paths on your BigBlueButton server
  3. # to the Greenlight application. If you are using a different
  4. # subpath, you should change it here.
  5. location /b {
  6. proxy_pass http://127.0.0.1:5000;
  7. proxy_set_header Host $host;
  8. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  9. proxy_set_header X-Forwarded-Ssl on;
  10. proxy_set_header X-Forwarded-Proto $scheme;
  11. proxy_http_version 1.1;
  12. }
  13. location /b/cable {
  14. proxy_pass http://127.0.0.1:5000;
  15. proxy_set_header Host $host;
  16. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  17. proxy_set_header X-Forwarded-Proto $scheme;
  18. proxy_set_header Upgrade $http_upgrade;
  19. proxy_set_header Connection "Upgrade";
  20. proxy_http_version 1.1;
  21. proxy_read_timeout 6h;
  22. proxy_send_timeout 6h;
  23. client_body_timeout 6h;
  24. send_timeout 6h;
  25. }