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 792B

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