Re: [users@httpd] Confusing apache configuration

2012-06-27 Thread Robert Decker
Thanks! That was the clue I needed. The following is working for me: ServerName beta.server.com ProxyRequests Off Order deny,allow Allow from all PassengerEnabled off ProxyPassMatch ^/(?!mstar)(.*) http://beta.server.com:8890/$1 ProxyPassReverse /

Re: [users@httpd] Confusing apache configuration

2012-06-27 Thread Daniel Gruno
On 06/27/2012 03:29 PM, Robert Decker wrote: > Hello. I'm having trouble figuring out how to configure apache for the > following: > > www.server.com/mstar should go through mod_passenger > > but anything else, such as: > www.server.com/ > www.server.com/index.hmtl > etc > should go through mod_p

[users@httpd] Confusing apache configuration

2012-06-27 Thread Robert Decker
Hello. I'm having trouble figuring out how to configure apache for the following: www.server.com/mstar should go through mod_passenger but anything else, such as: www.server.com/ www.server.com/index.hmtl etc should go through mod_proxy. So, I would need something to check if it has /mstar as th