https://cwiki.apache.org/OFBIZ/faq-tips-tricks-cookbook-howto.html#FAQ-Tips-Tricks-Cookbook-HowTo-HTTPD

But you would do something like this:

<Location /ecommerce/>
        proxyPass ajp://127.0.0.1:8009/ecommerce/
 </Location>
 <Location /images/>
       proxyPass ajp://127.0.0.1:8009/images/
 </Location>
 <Location /content/>
        proxyPass ajp://127.0.0.1:8009/content/
 </Location>

You just have to make sure anything ofbiz-specific is short-circuited to
ajp://

This also pretty much disables accessing the backend (/webtools/, etc.) as
well.

On Fri, Mar 8, 2013 at 5:31 PM, Ted Byers <[email protected]> wrote:

> I am studying how to install OFBiz and a multi-domain WordPress site
> on the same server, and I want a) all access to all content in either
> to be over a secure connection (but I have yet to succees to figure
> out how to get mod_rewrite to redirect all requests coming in on port
> 80 using http to be remade using https over port 443 - I always get an
> error that the redirection was done in a way that will never
> complete), and b) to ensure that whatever I do getting ofbiz to work
> with apache's httpd server will not break what I have to do to get a
> working multi-site WordPress install (which I will begin with by
> experimenting with simulating multiple virtual hosts served by httpd
> based on a small number of entries to the hosts file on both the
> server and a couple client virtual machines).
>
> I know I found a web page in the past that talked about configuring
> Apache's httpd server receive requests for OFBiz and pass them on to
> OFBiz, but for the life of me, and despite many Google searchs, I have
> not found it again.  Does anyone know what the URL for that page is?
>
> Thanks
>
> Ted
>

Reply via email to