Re: Conditional balancing

2013-08-04 Thread Payam Chychi
Serverside cookies for session management tho itl be more of a static Pre-determined mapping... Aka Stickysessions -- Payam Chychi Network Engineer / Security Specialist On Sunday, 4 August, 2013 at 1:43 PM, Nulik Nol wrote: > I am developing a webmail service where the user's inbox and al

Re: why will nginx's map directive eat all ram?

2013-08-04 Thread Payne Chu
Thanks Valentin, The issue fixed Posted at Nginx Forum: http://forum.nginx.org/read.php?2,241478,241566#msg-241566 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: cannot build variables_hash

2013-08-04 Thread icecola123
Want to buy good quality and cheap tablet you, here is a good choice efox Posted at Nginx Forum: http://forum.nginx.org/read.php?2,241210,241562#msg-241562 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: cannot build variables_hash

2013-08-04 Thread icecola123
Want to buy good quality and cheap tablet you, here is a good choice efox Posted at Nginx Forum: http://forum.nginx.org/read.php?2,241210,241561#msg-241561 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Conditional balancing

2013-08-04 Thread Maxim Dounin
Hello! On Sun, Aug 04, 2013 at 03:43:16PM -0500, Nulik Nol wrote: > I am developing a webmail service where the user's inbox and all > related session variables will be loaded to one of many application > servers which will be behind the balancer (running nginx). So, I need > nginx to direct all

Conditional balancing

2013-08-04 Thread Nulik Nol
I am developing a webmail service where the user's inbox and all related session variables will be loaded to one of many application servers which will be behind the balancer (running nginx). So, I need nginx to direct all requests of a particular user, to a particular application server. How can

Re: Problem with subdomain in localhost.

2013-08-04 Thread B.R.
The question is: How does Nginx process a request made with an unknown hostname? The answer is: http://nginx.org/en/docs/http/request_processing.html --- *B. R.* ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Problem with subdomain in localhost.

2013-08-04 Thread vasilakisfil
Hello! I am trying to create subdomains in my localhost. I want for instance 2 domains, fil.localhost and test.localhost that point to 2 different locations. Although I have managed to accomplish that there is a problem with my localhost: it points to a location too (actually in fil.localhost) and

Re: Hide raw regular expression from $_SERVER['server_name']

2013-08-04 Thread justin
Great fix Igor. Thanks. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,241519,241531#msg-241531 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Hide raw regular expression from $_SERVER['server_name']

2013-08-04 Thread Igor Sysoev
On Aug 4, 2013, at 2:07 , justin wrote: > I am using a regular expression in a server_name: > > server_name ~^(?!web2\.)(?.+)\.mydomain\.com$; > > In PHP, or any language for that matter, if I: > >echo $_SERVER['server_name']; >//~^(?!web2\.)(?.+)\.mydomain\.com$ > > I

Re: Hide raw regular expression from $_SERVER['server_name']

2013-08-04 Thread Jonathan Matthews
On 4 Aug 2013 01:07, "justin" wrote: > > J, > > The "HOST" http-header is correct, I am just wondering if I can modify or > prevent the raw regular expression being exposed in $_SERVER['server_nam']. Why? The only meaningful information it could hold would be the same as that passed via the Host