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-apache 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <VirtualHost *:80>
  2. ServerName jitsi-meet.example.com
  3. Redirect permanent / https://jitsi-meet.example.com/
  4. </VirtualHost>
  5. <VirtualHost *:443>
  6. ServerName jitsi-meet.example.com
  7. # enable HTTP/2, if available
  8. Protocols h2 http/1.1
  9. SSLEngine on
  10. SSLProxyEngine on
  11. SSLCertificateFile /etc/jitsi/meet/jitsi-meet.example.com.crt
  12. SSLCertificateKeyFile /etc/jitsi/meet/jitsi-meet.example.com.key
  13. Header always set Strict-Transport-Security "max-age=63072000"
  14. DocumentRoot "/usr/share/jitsi-meet"
  15. <Directory "/usr/share/jitsi-meet">
  16. Options Indexes MultiViews Includes FollowSymLinks
  17. AddOutputFilter Includes html
  18. AllowOverride All
  19. Order allow,deny
  20. Allow from all
  21. </Directory>
  22. ErrorDocument 404 /static/404.html
  23. Alias "/config.js" "/etc/jitsi/meet/jitsi-meet.example.com-config.js"
  24. <Location /config.js>
  25. Require all granted
  26. </Location>
  27. Alias "/external_api.js" "/usr/share/jitsi-meet/libs/external_api.min.js"
  28. <Location /external_api.js>
  29. Require all granted
  30. </Location>
  31. ProxyPreserveHost on
  32. ProxyPass /http-bind http://localhost:5280/http-bind
  33. ProxyPassReverse /http-bind http://localhost:5280/http-bind
  34. ProxyPass /xmpp-websocket ws://localhost:5280/xmpp-websocket
  35. ProxyPassReverse /xmpp-websocket ws://localhost:5280/xmpp-websocket
  36. ProxyPass /colibri-ws/default-id ws://localhost:9090/colibri-ws/default-id
  37. ProxyPassReverse /colibri-ws/default-id ws://localhost:9090/colibri-ws/default-id
  38. RewriteEngine on
  39. RewriteRule ^/([a-zA-Z0-9]+)$ /index.html
  40. </VirtualHost>
  41. # Mozilla Guideline v5.4, Apache 2.4.41, OpenSSL 1.1.1d, intermediate configuration, no OCSP
  42. SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1
  43. SSLCipherSuite ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384
  44. SSLHonorCipherOrder off
  45. SSLSessionTickets off