Ubuntu 12.04
apache2: Server version: Apache/2.2.22
* sudo apt-get install apache2 でインストール
の構成ですが、
proxy_wstunnel_moduleをインストールしたいと思っています。

/etc/apache2/mods-availableの中にもなく、
proxy_wstunnel_module.so
をfindで探しましたが、ありません。

どのようにインストールするかご存知の方、ご教示お願いします。


apache2.4をインストールしました。mod_proxy_wstunnelもenableにしました。
apacheの設定を

<VirtualHost *:80>
    ServerAdmin webmaster@localhost
    ServerName ubuntu.jp
    ServerAlias www.ubuntu.jp
    DocumentRoot /var/ubuntu
    Options FollowSymLinks MultiViews ExecCGI
    DirectoryIndex index.html index.php

    Alias /node /var/ubuntu/node

    <Location /node/>
      ProxyPass http://localhost:3000/
      ProxyPass ws://localhost:3000/
      ProxyPassReverse http://localhost:3000/
      ProxyPassReverse ws://localhost:3000/
      Require all granted
    </Location>

    ErrorLog ${APACHE_LOG_DIR}/ubuntu_error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog ${APACHE_LOG_DIR}/ubuntu_access.log combined
    ServerSignature Off

    <Directory "/var/ubuntu/">
        Require all granted
    </Directory>
</VirtualHost>

にしていますが、Socket通信ができません。
対処方法ご存知の方はご教示のほど何卒よろしくお願いします。