|
<VirtualHost *:80>
|
|
ServerName olivetin.example.com
|
|
ProxyPass / http://localhost:1337/
|
|
ProxyPassReverse / http://localhost:1337/
|
|
|
|
RewriteEngine On
|
|
RewriteCond %{REQUEST_URI} ^/websocket
|
|
RewriteRule /(.) ws://localhost:1337/websocket [P,L]
|
|
</VirtualHost>
|