2
0

meet.conf 619 B

12345678910111213141516171819202122232425262728293031323334
  1. server_name _;
  2. client_max_body_size 0;
  3. root /usr/share/jitsi-meet;
  4. index index.html
  5. error_page 404 /static/404.html;
  6. location ~ ^/([a-zA-Z0-9=\?]+)$ {
  7. rewrite ^/(.*)$ / break;
  8. }
  9. location /config.js {
  10. alias /config/config.js;
  11. }
  12. location /interface_config.js {
  13. alias /config/interface_config.js;
  14. }
  15. location /external_api.js {
  16. alias /usr/share/jitsi-meet/libs/external_api.min.js;
  17. }
  18. location / {
  19. ssi on;
  20. }
  21. # BOSH
  22. location /http-bind {
  23. proxy_pass {{ .Env.XMPP_BOSH_URL_BASE }}/http-bind;
  24. proxy_set_header X-Forwarded-For $remote_addr;
  25. proxy_set_header Host {{ .Env.XMPP_DOMAIN }};
  26. }