I just fixed my reverse proxy with apache to a jboss server, and finally it works I had to use AJP, not just reverse proxy because I had problems loggin in,
This is my server configuration which it doesnt make much sense to me, because when I was just using reverse proxy, on the proxypass I pointed to port 8080 to my jboss server, but here it is doing different. Anyways now it works perfect and I can log. All the css and js are diplayed, but when I go to www.mydomain.com I get the jboss root page, I want it to go to /catalogoBiologia instead, I was tweaking with proxypas and proxypassreverse but it is not working.
<VirtualHost *:80>
ServerName www.mydomain.com
ProxyRequests off
ErrorLog logs/www.mydomain.com-error_log
CustomLog logs/www.mydomain.com-access_log common
JkMount /* ajp13_worker
</VirtualHost>
<VirtualHost *:80>
ServerName reverse.mydomain.com
ProxyPass /catalogoBiologia http://www.mydomain.com:80/
ProxyPassReverse /catalogoBiologia http://www.mydomain.com:80/
</VirtualHost>