ProxyPass /socket.io/1/websocket ws://localhost:8888/socket.io/1/websocket ProxyPassReverse /socket.io/1/websocket ws://localhost:8888/socket.io/1/websocket ProxyPass /socket.io/ http://localhost:8888/socket.io/ ProxyPassReverse /socket.io/ http://localhost:8888/socket.io/ # Etherpad example # If you install etherpad on the same box, listening on its default # port (9001) and want it to be accessible on /etherpad/ # # 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 # # ProxyPass /etherpad/ http://localhost:9001/ # ProxyPassReverse /etherpad/ http://localhost:9001/ RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^/vroom/([a-z]{2}/)?(\d{10}/)?(js|css|img|fonts|snd)/(.*)$ /vroom/$3/$4 [L] ProxyPass /vroom/ http://127.0.0.1:8090/ ProxyPassReverse /vroom/ http://127.0.0.1:8090/ ProxyPreserveHost On SSLRequireSSL on require all granted 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 Header append Vary User-Agent env=!dont-vary Header unset ETag ExpiresActive on ExpiresDefault "access plus 1 month" ExpiresByType application/json "access plus 0 seconds" ExpiresByType application/xml "access plus 0 seconds" ExpiresByType text/xml "access plus 0 seconds" ExpiresByType text/html "access plus 0 seconds" # 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 require local SSLRequireSSL on