Re: Re: Multiple Servers and Authentication Sessions Breaking

2011-03-09 Thread Matthew Roy
@Tom: I'm not configuring SESSION_ENGINE so it should be the default django.contrib.sessions.backends.db @Henrik: That may well be the problem, I have a cron job to generate a random secret key on each server weekly. I will try setting them statically. Thanks for your responses, I'll let you know

RE: Re: Multiple Servers and Authentication Sessions Breaking

2011-03-09 Thread Henrik Genssen
and do you use the same SECRET_KEY on both servers? regards Henrik >reply to message: >date: 09.03.2011 13:33:17 >from: "Tom Evans" >to: django-users@googlegroups.com >subject: [] Re: Multiple Servers and >Authentication Sessions Breaking > >On Wed, Mar 9, 2

Re: Multiple Servers and Authentication Sessions Breaking

2011-03-09 Thread Tom Evans
On Wed, Mar 9, 2011 at 8:24 AM, Matthew Roy wrote: > I'm running a site with 2 front end servers (lighttpd with django in > fcgi daemons) and one database server (MySQL). The two front end > servers are in DNS round-robin so a user might get some content from > one and some from the other in any g

Multiple Servers and Authentication Sessions Breaking

2011-03-09 Thread Matthew Roy
I'm running a site with 2 front end servers (lighttpd with django in fcgi daemons) and one database server (MySQL). The two front end servers are in DNS round-robin so a user might get some content from one and some from the other in any given session. All this works fine and has had no problems fo