I have Apache 2.4 with mod_proxy_ajp to forward REST requests to Tomcat 7. Everything works fine except that I am using Atmosphere 2.1.2 and the Atmosphere calls do not make it to Tomcat. I know that there are alternatives to Apache for working with websockets (Nginx and HAProxy etc) but I was wondering if there is a way to make it work with Apache? Here is my VirtualHost definition in httpd.conf
<VirtualHost *:80>
ServerName 192.168.0.100
ProxyPass /roomky ajp://192.168.0.100:8009/roomky
ProxyPassReverse /roomky ajp://192.168.0.100:8009/roomky/
ProxyRequests On
ProxyVia On
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
</VirtualHost>
Any suggestions?