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 1.8KB

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