Re: [PATCH] PCRE: retain input pattern for all regular expressions
Hello!On Wed, May 08, 2013 at 05:08:17AM +0400, Valentin V. Bartenev wrote:> On Thursday 02 May 2013 14:32:51 Piotr Sikora wrote:> > # HG changeset patch> > # User Piotr Sikora...
View Articleis static access_log within if-in-location better than dynamic global?
Hi,According to http://nginx.org/r/access_log, the access_log directivecannot be used within an `if` in `server`, only within an `if` in`location`.Indeed, it doesn't actually work within an `if`...
View ArticleNginx eats 100% cpu in ngx_event_pipe_write_to_downstream
Hello list,We are porting ModSecurity to NGINX. However we are seeing sometimes anissue. Nginx eats 100% of cpu and when i use gdb i see:gdb -p 8645ngx_event_pipe_write_to_downstream (p=0x9bbc720,...
View ArticleRe: [PATCH] PCRE: retain input pattern for all regular expressions
On Saturday 11 May 2013 21:30:39 Maxim Dounin wrote:> Hello!>> On Wed, May 08, 2013 at 05:08:17AM +0400, Valentin V. Bartenev wrote:> > On Thursday 02 May 2013 14:32:51 Piotr Sikora...
View ArticleRe: Debian package
On 11 May2013, at 07:52 , B.R. <reallfqq-nginx@yahoo.fr> wrote:> Hello,>> Is Wheezy supported for Nginx?Not yet. I plan to build packages for wheezy and ubuntu 13.04 in aweek or...
View ArticleNginx + Mono (OpenBSD 5.3)
It's looking like he permissions issue may be related to chroot (OpenBSDappears to run nginx in 'jail').This all seems sane - but unfortunately, my *nix-foo isn't strong enough towork out which is the...
View ArticleRe: Nginx eats 100% cpu in ngx_event_pipe_write_to_downstream
Hello!On Sat, May 11, 2013 at 04:23:00PM -0300, Breno Silva wrote:> Hello list,>> We are porting ModSecurity to NGINX. However we are seeing sometimes an> issue. Nginx eats 100% of cpu and...
View ArticleRe: Nginx eats 100% cpu in ngx_event_pipe_write_to_downstream
Hello Maxim,We are sending chains data into a brigade/bucket structure (APR). Itsometimes works fine.. sometimes trigger the cpu issueIf i call:rc = move_chain_to_brigade(in, ctx->brigade,...
View ArticleRe: nginx-1.4 proxy requests being continious
Hello!On Sat, May 11, 2013 at 04:13:38PM +1000, Daniel Black wrote:[...]> > A request for /img/file_doesnt_exist.jpg results in the backend server> > (192.168.129.90) getting continuous...
View ArticleRe: Nginx eats 100% cpu in ngx_event_pipe_write_to_downstream
Hello!On Sat, May 11, 2013 at 08:09:59PM -0300, Breno Silva wrote:> Hello Maxim,>> We are sending chains data into a brigade/bucket structure (APR). It> sometimes works fine.. sometimes...
View ArticleReading request_body before passing to backend server
I am trying to read if a specific value is set (passed) as a POST using request_body.What I am trying to do is:server {..if ($request_body ~ "API-value-Iwanttocheck") {set $my_api "TRUE";}And later on...
View ArticleRe: nginx-1.4 proxy requests being continious
Hi!> > > proxy_next_upstream error timeout invalid_header http_500 http_502> > > http_503 http_504 http_404;>> What you describe looks very familiar - there was such a bug...
View ArticleRe: [PATCH] PCRE: retain input pattern for all regular expressions
Hello.It is a pity that commits are no longer sent to the mailing list.2013/5/12 Valentin V. Bartenev <ne@vbart.ru>> On Saturday 11 May 2013 21:30:39 Maxim Dounin wrote:> > Hello!>...
View ArticleRe: Nginx eats 100% cpu in ngx_event_pipe_write_to_downstream
Hello,Yes removing he ngx_free_chain fix the cpu issue. Looks like ther modulesneeds the chain.I detected another issue.. sometimes when loading big response bodies (likeimages.. +32K) it does not load...
View Articlelocation matching.
I've just had to move subversion onto a server that's already servingnetwork wordpress via nginx. Most things work via /svn in a subversionclient but I can't for the life of me figure out how to stop...
View ArticleRe: location matching.
Have you looked at the ^~ prefix mentioned inhttp://wiki.nginx.org/HttpCoreModule#location ?It looks like what you need ...--Jonathan Matthews // Oxford, London,...
View ArticleRe: [1.4.1] Finding docroot directory?
This Ars Technica article is where I learned how to use nginx. LeeHutchinson does a good job explaining all that.http://arstechnica.com/gadgets/2012/11/how-to-set-up-a-safe-and-secure-web-server/On...
View ArticleRe: location matching.
On Sun, May 12, 2013 at 03:25:56PM +0100, Steve Wilson wrote:Hi there,I see from the end of the thread that you have a working system now byusing separate server{} blocks, so that's all good.It might...
View ArticleRe: [1.4.1] Finding docroot directory?
On Mon, May 13, 2013 at 06:56:11AM -0400, Shohreh wrote:Hi there,> I'm running Nginx 1.4.1 on an appliance running Debian 6, and can't find> from which directory Nginx is serving files.If "nginx...
View ArticleFastCGI - implementation
PHP-FPM is an externally spawned FastCGI-aware process.Over one fastCGI transport connection PHP-FPM can handle multipleconcurrent requests.Web server does not have to spawn new processes with PHP...
View Article