WebSocksは、バージョン2.4.xx以降のApacheでサポートされています。 Apache2.4.xxの最小限の構成を次に示します。 Ubuntu14.04.xで
適切なモジュールをインストールします:
a2enmod proxy
a2enmod proxy_wstunnel
VirtualHostを構成します(WebSock部分のみがここに表示されます)
# Make sure the backend server gets the right URL in 'Location:' http Header
ProxyPreserveHost On
#
# Forward only the websocks requests to the Websocks handler in the backend server
RewriteRule ^/websock/(.*) ws://my.backend.net:8080/websock/$1 [P]
ProxyPassReverse / ws://my.backend.net:8080/
#
# Forward the rest of the requests to the backend server as http requests
ProxyPass / http://my.backend.net:8080/
ProxyPassReverse / http://my.backend.net:8080/