Re: Check the size of one of the request header in nginx conf

2018-03-06 Thread Aziz Rozyev
by the way, there is easier solution to this (thanks to Ruslan Ermilov) something like this: map $http_ $disabled { ^.{65,} 1 } location / { if $disable { return 404; } proxy_pass http://upstream; } br, Aziz. > On 6 Mar 2018, at 15:16, Aziz Rozyev wrote: > > hi, > > I t

Re: Check the size of one of the request header in nginx conf

2018-03-06 Thread Aziz Rozyev
hi, I think you can do such a checking with lua/njs modules. br, Aziz. > On 6 Mar 2018, at 15:13, mejetjoseph wrote: > > Dear Team, > > I would like to know is it possible to check the size of one of header > values in nginx conf file . I need to reset the header value if the size of > t

Check the size of one of the request header in nginx conf

2018-03-06 Thread mejetjoseph
Dear Team, I would like to know is it possible to check the size of one of header values in nginx conf file . I need to reset the header value if the size of this header value exceed 64 character. Could you please provide can I able to do this condition check in ngnix conf file? Kind regards, J