views:

36

answers:

3

When I log in with one browser session, I have to log in, but when I open another session it has automatically logged me in (as if I've picked up session 1), this does not happen if I use http://192.168.0.9:9070

It forces me to log in each time. So I know the application is working, it's just the proxy server that seems to apply the loging to each session (from http://icerap.limeo.com).

# ************************************************************************
# Start of My stuff <<<------------------------------------------------------
# ************************************************************************




#<Proxy *>
#Order Deny,Allow
#Deny from all
#Allow from 192.168.0
#</Proxy> 

# blog
<VirtualHost *:80>
  ServerName icerap.limeo.com
  ProxyPass          /   http://192.168.0.9:9070/
  ProxyPassReverse   /   http://192.168.0.9:9070/
</VirtualHost>


# www
<VirtualHost *:80>
  ServerName         helpdesk.limeo.com 
  ProxyPass          /  http://192.168.0.9:9055/
  ProxyPassReverse   /  http://192.168.0.9:9055/
</VirtualHost>




# blog
<VirtualHost *:80>
  ServerName         IceCake.limeo.com
  ProxyPass          /   http://192.168.0.9:9000/
  ProxyPassReverse   /   http://192.168.0.9:9000/
</VirtualHost>

# End of Limeo stuff <<<------------------------------------------------------
# ************************************************************************
A: 

VirtualHost directives have nothing to do with authentication or logging in.

James Polley
A: 

Thanks for your response James, the problem is if the application is logged in via another machine via the domain name icerap.limeo.com rather than through 192.168.0.9:9070 this allow non authenticated login via the same machine or other machines via icerap.limeo.com so I know this is not cookie related. This prolem does not arise when I use 192.168.0.9:9070

Therefore I still can't discount the problem is with apache.

Pablo
A: 

Any insight would appreciated

Pablo

related questions