[OFBiz] Users - Users - Tomcat and mod proxy headache

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

[OFBiz] Users - Users - Tomcat and mod proxy headache

Andrew Sykes
Daniel,

We too had nightmares using mod_jk, so decided to go the
mod_proxy/mod_rewrite route.

Our system has been running like this for a couple of years with no
problems.

Here's a sample httpd.conf entry...

////////////////////////////////

<VirtualHost *>
    ServerAlias www.ourdomain.com
    ServerAlias ourdomain.com
    RewriteEngine on

    RewriteRule   ^/od(.*)$  http://localhost:7000/od/$1  [P,L]

    RewriteRule   ^/ecommerce(.*)$  http://localhost:7000/od/$1  [P,L]
    RewriteRule   ^/images(.*)$  http://localhost:7000/images/$1  [P,L]
    RewriteRule   ^/(.*)$  http://localhost:7000/od/$1  [P,L]
    ProxyPassReverse / http://localhost:5000/od/
</VirtualHost>


////////////////////////////////

In this example "/od" is the mount point of "ourdomain" in Jetty
In this example "/images" is the mount point of the image dir in Jetty

I know this is slightly different from the way you have been trying, but
I can vouch for it's effectiveness!

I hope that helps you

--
Andrew Sykes <[hidden email]>
Sykes Development Ltd

 
_______________________________________________
Users mailing list
[hidden email]
http://lists.ofbiz.org/mailman/listinfo/users
Reply | Threaded
Open this post in threaded view
|

[OFBiz] Users - Re: Tomcat and mod proxy headache

drosowsk
Hi Andrew,

thank you very much! I think I can safely say I'm one step closer to success
:-)

When I took your sample apache2.conf entry (customized it for our domain and
copied it to forward a request from port 443 to 8443), the browser now
complains about "connection refused on localhost:8443" !?

Again, when I try to open the URL and the port directly
(https://ourdomain.com:8443) everything works fine.

Any more ideas?
Cheers,
Daniel


> Daniel,
>
> We too had nightmares using mod_jk, so decided to go the
> mod_proxy/mod_rewrite route.
>
> Our system has been running like this for a couple of years with no
> problems.
>
> Here's a sample httpd.conf entry...
>
> ////////////////////////////////
>
> <VirtualHost *>
>     ServerAlias www.ourdomain.com
>     ServerAlias ourdomain.com
>     RewriteEngine on
>
>     RewriteRule   ^/od(.*)$  http://localhost:7000/od/$1  [P,L]
>
>     RewriteRule   ^/ecommerce(.*)$  http://localhost:7000/od/$1  [P,L]
>     RewriteRule   ^/images(.*)$  http://localhost:7000/images/$1  [P,L]
>     RewriteRule   ^/(.*)$  http://localhost:7000/od/$1  [P,L]
>     ProxyPassReverse / http://localhost:5000/od/
> </VirtualHost>
>
>
> ////////////////////////////////
>
> In this example "/od" is the mount point of "ourdomain" in Jetty
> In this example "/images" is the mount point of the image dir in Jetty
>
> I know this is slightly different from the way you have been trying, but
> I can vouch for it's effectiveness!
>
> I hope that helps you
>
> --
> Andrew Sykes <[hidden email]>
> Sykes Development Ltd
>
>  
> _______________________________________________
> Users mailing list
> [hidden email]
> http://lists.ofbiz.org/mailman/listinfo/users
>

--
GMX DSL = Maximale Leistung zum minimalen Preis!
2000 MB nur 2,99, Flatrate ab 4,99 Euro/Monat: http://www.gmx.net/de/go/dsl
 
_______________________________________________
Users mailing list
[hidden email]
http://lists.ofbiz.org/mailman/listinfo/users
Reply | Threaded
Open this post in threaded view
|

Re: [OFBiz] Users - Re: Tomcat and mod proxy headache

David E. Jones

Check out the "Basic Production Setup Guide". This is just a guess,  
but it may be a problem with your url.properties file.

-David


On Aug 17, 2005, at 5:42 AM, Daniel Rosowski wrote:

> Hi Andrew,
>
> thank you very much! I think I can safely say I'm one step closer  
> to success
> :-)
>
> When I took your sample apache2.conf entry (customized it for our  
> domain and
> copied it to forward a request from port 443 to 8443), the browser now
> complains about "connection refused on localhost:8443" !?
>
> Again, when I try to open the URL and the port directly
> (https://ourdomain.com:8443) everything works fine.
>
> Any more ideas?
> Cheers,
> Daniel
>
>
>
>> Daniel,
>>
>> We too had nightmares using mod_jk, so decided to go the
>> mod_proxy/mod_rewrite route.
>>
>> Our system has been running like this for a couple of years with no
>> problems.
>>
>> Here's a sample httpd.conf entry...
>>
>> ////////////////////////////////
>>
>> <VirtualHost *>
>>     ServerAlias www.ourdomain.com
>>     ServerAlias ourdomain.com
>>     RewriteEngine on
>>
>>     RewriteRule   ^/od(.*)$  http://localhost:7000/od/$1  [P,L]
>>
>>     RewriteRule   ^/ecommerce(.*)$  http://localhost:7000/od/$1   
>> [P,L]
>>     RewriteRule   ^/images(.*)$  http://localhost:7000/images/$1   
>> [P,L]
>>     RewriteRule   ^/(.*)$  http://localhost:7000/od/$1  [P,L]
>>     ProxyPassReverse / http://localhost:5000/od/
>> </VirtualHost>
>>
>>
>> ////////////////////////////////
>>
>> In this example "/od" is the mount point of "ourdomain" in Jetty
>> In this example "/images" is the mount point of the image dir in  
>> Jetty
>>
>> I know this is slightly different from the way you have been  
>> trying, but
>> I can vouch for it's effectiveness!
>>
>> I hope that helps you
>>
>> --
>> Andrew Sykes <[hidden email]>
>> Sykes Development Ltd
>>
>>
>> _______________________________________________
>> Users mailing list
>> [hidden email]
>> http://lists.ofbiz.org/mailman/listinfo/users
>>
>>
>
> --
> GMX DSL = Maximale Leistung zum minimalen Preis!
> 2000 MB nur 2,99, Flatrate ab 4,99 Euro/Monat: http://www.gmx.net/ 
> de/go/dsl
>
> _______________________________________________
> Users mailing list
> [hidden email]
> http://lists.ofbiz.org/mailman/listinfo/users
>

 
_______________________________________________
Users mailing list
[hidden email]
http://lists.ofbiz.org/mailman/listinfo/users

smime.p7s (3K) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: [OFBiz] Users - Users - Tomcat and mod proxy headache

aasikmohamed90
In reply to this post by Andrew Sykes
Great post! The  bahrain incorporation  is truly a game-changer for investors, entrepreneurs, and professionals. It's encouraging to see how the UAE is positioning itself as a long-term hub for global talent.
The  business setup in saudi arabia
Thanks for this detailed post! business setup in Dubai Mainland seems like the best option for those who want to tap directly into the UAE market.