This content has been marked as final.
Show 3 replies
-
1. Re: Making eXo Platform available at the root URL using Apache
trong.tran Dec 26, 2011 5:03 AM (in response to biscuit)this question seems to be more related to GateIn which eXo Platform bases on.
So you could move this to http://community.jboss.org/en/gatein instead to get more precise anwsers
Cheers
-
2. Re: Making eXo Platform available at the root URL using Apache
hgomez Dec 27, 2011 1:06 PM (in response to biscuit)May I suggest you following settings for mod_proxy and ajp :
httpd.conf :
...
ProxyPass / ajp://localhost:8009/
ProxyPassReverse / ajp://localhost:8009/
ProxyPreserveHost On
...
You could use also mod_jk :
workers.properties :
worker.list=w1
# Set properties for worker1 (ajp13)
worker.w1.type=ajp13
worker.w1.host=localhost
worker.w1.port=8009
httpd.conf :
...
JkMount /* w1
...
-
3. Re: Making eXo Platform available at the root URL using Apache
viswanathan_gurumurthy Jan 21, 2014 12:23 PM (in response to biscuit)
HiMay I know how you implemented the above requirement ? I may need to do a similar thing for my portal application.
Thanks in advance.