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

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. Alias "/config.js" "/etc/jitsi/meet/jitsi-meet.example.com-config.js"
  27. <Location /config.js>
  28. Require all granted
  29. </Location>
  30. ProxyPreserveHost on
  31. ProxyPass /http-bind http://localhost:5280/http-bind/
  32. ProxyPassReverse /http-bind http://localhost:5280/http-bind/
  33. RewriteEngine on
  34. RewriteRule ^/([a-zA-Z0-9]+)$ /index.html
  35. </VirtualHost>