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.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. SSLProtocol TLSv1 TLSv1.1 TLSv1.2
  11. SSLEngine on
  12. SSLProxyEngine on
  13. SSLCertificateFile /etc/jitsi/meet/jitsi-meet.example.com.crt
  14. SSLCertificateKeyFile /etc/jitsi/meet/jitsi-meet.example.com.key
  15. SSLCipherSuite "EECDH+ECDSA+AESGCM:EECDH+aRSA+AESGCM:EECDH+ECDSA+SHA256:EECDH+aRSA+SHA256:EECDH+ECDSA+SHA384:EECDH+ECDSA+SHA256:EECDH+aRSA+SHA384:EDH+aRSA+AESGCM:EDH+aRSA+SHA256:EDH+aRSA:EECDH:!aNULL:!eNULL:!MEDIUM:!LOW:!3DES:!MD5:!EXP:!PSK:!SRP:!DSS:!RC4:!SEED"
  16. SSLHonorCipherOrder on
  17. Header set Strict-Transport-Security "max-age=31536000"
  18. DocumentRoot "/usr/share/jitsi-meet"
  19. <Directory "/usr/share/jitsi-meet">
  20. Options Indexes MultiViews Includes FollowSymLinks
  21. AddOutputFilter Includes html
  22. AllowOverride All
  23. Order allow,deny
  24. Allow from all
  25. </Directory>
  26. ErrorDocument 404 /static/404.html
  27. Alias "/config.js" "/etc/jitsi/meet/jitsi-meet.example.com-config.js"
  28. <Location /config.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. RewriteEngine on
  35. RewriteRule ^/([a-zA-Z0-9]+)$ /index.html
  36. </VirtualHost>