1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <VirtualHost *:80>
- ServerName {{ jitsi_subdomain }}.{{ item.name }}
-
- Redirect temp / https:
- </VirtualHost>
-
- <VirtualHost *:443>
- ServerName {{ jitsi_subdomain }}.{{ item.name }}
-
- # enable HTTP/2, if available
- Protocols h2 http/1.1
-
- SSLEngine On
- SSLProxyEngine On
-
- Header always set Strict-Transport-Security
-
- DocumentRoot
- <Directory
- Options
- AddOutputFilter
- AllowOverride
- Order
- Allow
- </Directory>
-
- ErrorDocument 404 /static/404.html
-
- Alias
- <Location /config.js>
- Require
- </Location>
-
- Alias
- <Location /external_api.js>
- Require
- </Location>
-
- ProxyPreserveHost on
- ProxyPass /http-bind ///http-bind
- ProxyPassReverse ////http-bind
- ProxyPass ////xmpp-websocket
- ProxyPassReverse ////xmpp-websocket
- ProxyPass //default-id ws:
- ProxyPassReverse //default-id ws:
-
- RewriteEngine on
- RewriteRule ^/ /index.html
-
- LogLevel warn
- ErrorLog //log//jitsi.info-error_log
- CustomLog //log//jitsi.info-access_log common
- </
|