modified lib-jitsi-meet dev repo
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.example 827B

123456789101112131415161718192021222324252627282930313233343536
  1. server_names_hash_bucket_size 64;
  2. server {
  3. listen 80;
  4. server_name jitsi-meet.example.com;
  5. return 301 https://$host$request_uri;
  6. }
  7. server {
  8. listen 443 ssl;
  9. server_name jitsi-meet.example.com;
  10. ssl_certificate /var/lib/prosody/jitsi-meet.example.com.crt;
  11. ssl_certificate_key /var/lib/prosody/jitsi-meet.example.com.key;
  12. root /usr/share/jitsi-meet;
  13. index index.html index.htm;
  14. location /config.js {
  15. alias /etc/jitsi/meet/jitsi-meet.example.com-config.js;
  16. }
  17. location ~ ^/([a-zA-Z0-9=\?]+)$ {
  18. rewrite ^/(.*)$ / break;
  19. }
  20. location / {
  21. ssi on;
  22. }
  23. # BOSH
  24. location /http-bind {
  25. proxy_pass http://localhost:5280/http-bind;
  26. proxy_set_header X-Forwarded-For $remote_addr;
  27. proxy_set_header Host $http_host;
  28. }
  29. }