mirror of https://github.com/dani/vroom.git
Video conf based on SimpleWebRTC https://vroom.fws.fr/documentation
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.
53 lines
1.9 KiB
53 lines
1.9 KiB
11 years ago
|
<IfModule mod_proxy_wstunnel.c>
|
||
10 years ago
|
ProxyPass /socket.io/1/websocket ws://localhost:8090/socket.io/1/websocket
|
||
|
ProxyPassReverse /socket.io/1/websocket ws://localhost:8090/socket.io/1/websocket
|
||
11 years ago
|
</IfModule>
|
||
10 years ago
|
ProxyPass /socket.io/ http://localhost:8090/socket.io/
|
||
|
ProxyPassReverse /socket.io/ http://localhost:8090/socket.io/
|
||
11 years ago
|
|
||
|
# Etherpad example
|
||
|
# If you install etherpad on the same box, listening on its default
|
||
|
# port (9001) and want it to be accessible on /etherpad/
|
||
11 years ago
|
# <IfModule mod_proxy_wstunnel.c>
|
||
11 years ago
|
# ProxyPass /etherpad/socket.io/1/websocket ws://localhost:9001/socket.io/1/websocket
|
||
|
# ProxyPassReverse /etherpad/socket.io/1/websocket ws://localhost:9001/socket.io/1/websocket
|
||
|
# </IfModule>
|
||
|
# ProxyPass /etherpad/ http://localhost:9001/
|
||
|
# ProxyPassReverse /etherpad/ http://localhost:9001/
|
||
|
|
||
10 years ago
|
ProxyPass /vroom/ http://127.0.0.1:8090/
|
||
|
ProxyPassReverse /vroom/ http://127.0.0.1:8090/
|
||
|
<Proxy /vroom/*>
|
||
|
ProxyPreserveHost On
|
||
|
</Proxy>
|
||
11 years ago
|
<Directory /opt/vroom>
|
||
|
SSLRequireSSL on
|
||
|
require all granted
|
||
10 years ago
|
</Directory>
|
||
|
<Location />
|
||
11 years ago
|
<IfModule mod_deflate.c>
|
||
|
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/javascript text/css
|
||
|
SetOutputFilter DEFLATE
|
||
|
BrowserMatch ^Mozilla/4 gzip-only-text/html
|
||
|
BrowserMatch ^Mozilla/4.0[678] no-gzip
|
||
|
BrowserMatch ^HMSIE !no-gzip !gzip-only-text/html
|
||
|
SetEnvIfNoCase Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary
|
||
|
</IfModule>
|
||
|
<IfModule mod_headers.c>
|
||
|
Header append Vary User-Agent env=!dont-vary
|
||
11 years ago
|
Header unset ETag
|
||
|
</IfModule>
|
||
|
ExpiresActive on
|
||
|
ExpiresDefault "access plus 1 month"
|
||
|
ExpiresByType text/html "access plus 0 seconds"
|
||
11 years ago
|
</Directory>
|
||
10 years ago
|
# You should customize this part to access the admin interface
|
||
|
# VROOM doesn't handle authentication, it's up to you to protect
|
||
|
# /vroom/admin on your web server
|
||
|
<Location /vroom/admin>
|
||
|
require local
|
||
|
</Location>
|
||
11 years ago
|
<Location /socket.io>
|
||
|
SSLRequireSSL on
|
||
|
</Location>
|