Re: PCRE with NGINX

2015-05-05 Thread Francis Daly
On Tue, May 05, 2015 at 04:50:28AM -0400, nginxsantos wrote: Hi there, > I looked @ http://nginx.org/en/docs/http/server_names.html > It sames put it inside " " and once I did that it is working Yes - "wrap the regex in double quotes" is the right answer. This line does appear in the documentat

Re: PCRE with NGINX

2015-05-05 Thread nginxsantos
I looked @ http://nginx.org/en/docs/http/server_names.html It sames put it inside " " and once I did that it is working Thank you. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,258636,258649#msg-258649 ___ nginx mailing list nginx@nginx.org

Re: PCRE with NGINX

2015-05-05 Thread nginxsantos
Thanks for the explanation. Sorry, not able to understand you fully. My PCRE is something like this (have tested it through https://regex101.com/) .+\..{3}(?P.{6})[^\.]*$ Now, to achieve this what should I put in the nginx.conf Please let me know. Posted at Nginx Forum: http://forum.nginx.org/

Re: PCRE with NGINX

2015-05-05 Thread itpp2012
This works: ~*\{.*\:\; 1; with map, do note that a 400 in logging means something else which precedes map handling. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,258636,258644#msg-258644 ___ nginx mailing lis

Re: PCRE with NGINX

2015-05-05 Thread nginxsantos
I tried that alrwady . I don't get errors. But, the functionality does not work. So, I am not sure if the PCRE is not liking it or something else...Still debugging. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,258636,258638#msg-258638 ___ n

Re: PCRE with NGINX

2015-05-05 Thread itpp2012
\{ Would do it. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,258636,258637#msg-258637 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

PCRE with NGINX

2015-05-05 Thread nginxsantos
Hi, I am trying to insert a PCRE inside a map block. But looks like "{" used in my code is not liked. Suppose I am doing something like this inside a "map" block. .{1}(?P.{9}).* What is the escape character for "{ " Please let me know. Thanks Posted at Nginx Forum: http://forum.ngi