1. ##### This will just pass everything to a directory in tomcat
  2. ProxyPass / http://localhost:8080
  3. ProxyPassReverse / http://localhost:8080
  4. <IfModule mod_proxy.c>
  5. ProxyRequests Off
  6. <Proxy *>
  7. Order allow,deny
  8. Allow from all
  9. </Proxy>
  10. </IfModule>