Re: Filter insertion and ordering

2013-01-15 Thread Brian Akins
On Jan 15, 2013, at 5:35 AM, Nick Kew wrote: > > Thanks. Yes, that was of course the problem. > > I guess control of my ordering relative to other modules isn't available? > Nick, FWIW, we write most of our nginx modules as Lua modules now. Sometimes almost all of the module is actually in

Re: [feature] Add skip_location directive to ngx_http_rewrite

2013-01-17 Thread Brian Akins
If you need that type of logic look into using Lua or Perl, IMO. ___ nginx-devel mailing list nginx-devel@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx-devel

Re: Proposal: new caching backend for nginx

2013-01-23 Thread Brian Akins
On Tue, Jan 22, 2013 at 1:17 PM, Maxim Dounin wrote: > In > particular, with quick look through sources I don't see any > interface to store data with size not known in advance, which > happens often in HTTP world. Would this help? from the docs: "'Add transaction' support allows constructing obj

1.3.x if-none-match only works if las-modified set

2013-03-11 Thread Brian Akins
in ngx_http_not_modified_header_filter if (r->headers_out.status != NGX_HTTP_OK || r != r->main || r->headers_out.last_modified_time == -1) { So, it only checks if-match or if-none-match if last-modified is set. Is this on purpose? I'm just wondering if we want to be able to

Re: 1.3.x if-none-match only works if las-modified set

2013-03-11 Thread Brian Akins
On Mon, Mar 11, 2013 at 1:40 PM, Maxim Dounin wrote: > Changing the code to work with ETag from cache without > Last-Modified being present in a cached response should be > possible, but it will require some additional changes. In my case, the modified time changes although the content doesn't ac

Re: protobuf-nginx (nginx code generator for protocol buffers messages)

2013-04-22 Thread Brian Akins
I use protobufs in nginx via Lua. An example: https://github.com/bakins/lua-resty-riak Easy and speedy. ___ nginx-devel mailing list nginx-devel@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx-devel