OliveTin.conf 253 B

123456789
  1. <VirtualHost *:80>
  2. ServerName olivetin.example.com
  3. ProxyPass / http://localhost:1337/
  4. ProxyPassReverse / http://localhost:1337/
  5. RewriteEngine On
  6. RewriteCond %{REQUEST_URI} ^/websocket
  7. RewriteRule /(.) ws://localhost:1337/websocket [P,L]
  8. </VirtualHost>