Results 1 to 6 of 6
i have an apache that serves as a reverse proxy for a resin (servlet container), right now all the website is processed by resin.
now i want to add joomla ...
- 04-29-2009 #1Just Joined!
- Join Date
- Apr 2009
- Posts
- 3
how to configure apache reverese proxy
i have an apache that serves as a reverse proxy for a resin (servlet container), right now all the website is processed by resin.
now i want to add joomla cms for the articles of the website so i need the apache to serve the joomla/php and all the other stuff to be sent to the resin
mysite.com/artilces and beneath for the joomla
all the other mysite.com for the resin
how can i set the apache to do so?
thanks
- 04-29-2009 #2Just Joined!
- Join Date
- Apr 2009
- Posts
- 90
Why not use something like Squid?
- 04-29-2009 #3Just Joined!
- Join Date
- Apr 2009
- Posts
- 3
- 04-29-2009 #4Just Joined!
- Join Date
- Apr 2009
- Posts
- 90
The benefits are that you would have a dedicated program that is specifically built for such a purpose, and therefore may be more configurable and suitable for your current and future needs.
- 04-30-2009 #5
if apache is already in place and working, keep using it, no need to learn something new. apache is a very respectable reverse proxy.
I believe your reverse directives should be defined within a virtual host container, so use alias' within those containers to specify where each folder goes.
Code:<VirtualHost 127.0.0.1:80> DocumentRoot "/path/to/apps/appName/root" Alias /com "/path/to/com" Alias /lib "/path/to/lib" </VirtualHost> <VirtualHost 127.0.0.1:80> DocumentRoot "/path/to/apps/appName/root" Alias /reverse "/path/to/com" reverse directives blalahblah blahblah </VirtualHost>
- 05-01-2009 #6Just Joined!
- Join Date
- Apr 2009
- Posts
- 3
thank u both


Reply With Quote

