Re: Using variables on configuration (map?) for regex

2016-07-25 Thread mosto...@gmail.com
Hi Ok; I've read briefly about CAS, and I do not see how exactly the request gets from the client to nginx. But it sounds like the client does not have access to nginx directly; instead it talks "through" the CAS system which adds this http header to all requests. You got the idea. That sugge

Nginx not spawning both ipv4 and ipv6 workers

2016-07-25 Thread Charles Lawrence
I'm in the process of setting up a new server built on ubuntu 16.04 using nginx 1.10.0. The specific issue is that while my new configuration essentially matches my old nginx configuration from an ubuntu 13.10 server using nginx 1.4.4, nginx 1.10.0 is only creating either ipv4 or ipv6 workers, but

Re: Full URL parameter in nginx

2016-07-25 Thread Francis Daly
On Mon, Jul 25, 2016 at 01:15:56PM -0400, iivan wrote: Hi there, > No one knows how to fix this? :( Start at the beginning. What request do you make of nginx? What response do you get from nginx? What response do you want instead? My guess is that your nginx config could be ok, and you coul

Re: epoll_wait() reported that client prematurely closed connection, so upstream connection is closed too while sending request to upstream

2016-07-25 Thread nadavkav
I have similar issue Posted at Nginx Forum: https://forum.nginx.org/read.php?2,258050,268458#msg-268458 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Using variables on configuration (map?) for regex

2016-07-25 Thread Francis Daly
On Mon, Jul 25, 2016 at 10:41:43AM +0200, mosto...@gmail.com wrote: Hi there, > >(Your example suggests that your client will send a http header "Groups: > >gfoo" if this request should be handled as if this user is in the group > >gfoo. Perhaps you are using a special client configuration where

Re: Full URL parameter in nginx

2016-07-25 Thread iivan
No one knows how to fix this? :( Posted at Nginx Forum: https://forum.nginx.org/read.php?2,267813,268454#msg-268454 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Using variables on configuration (map?) for regex

2016-07-25 Thread mosto...@gmail.com
Hi The quick question/answer from the Subject line: if you are asking: how do I use a $variable in the "does this match" part of a "map"; the answer is "you don't". $ is either a literal character (in a string), or the end-of-string metacharacter (in a regex). Thank you for your clear and conci