"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7555/doc/debian/jitsi-meet/jitsi-meet.example-apache" (28 Sep 2023, 2070 Bytes) of package /linux/misc/jitsi-meet-7555.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

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