njs-0.4.1

2020-05-19 Thread Dmitry Volyntsev
Hello,

I'm glad to announce a new release of NGINX JavaScript module (njs).

This release extends http module.

Notable new features:
- raw headers API:
With the following request headers:
: Host: localhost
: Foo: bar
: foo: bar2
All 'foo' headers can be collected with the syntax:
: r.rawHeadersIn.filter(v=>v[0].toLowerCase() == 'foo').map(v=>v[1]);
the output will be:
: ['bar', 'bar2']

- TypeScript API definition:
: foo.ts:
: /// 
: function content_handler(r: NginxHTTPRequest) 
: {
:r.headersOut['content-type'] = 'text/plain';
:r.return(200, "Hello from TypeScript");
: }
: 
: tsc foo.ts --outFile foo.js
foo.js can be used directly with njs.

You can learn more about njs:

- Overview and introduction: http://nginx.org/en/docs/njs/
- Using node modules with njs: http://nginx.org/en/docs/njs/node_modules.html
- Writing njs code using TypeScript definition files: 
  http://nginx.org/en/docs/njs/typescript.html

Feel free to try it and give us feedback on:

- Github: https://github.com/nginx/njs/issues
- Mailing list: http://mailman.nginx.org/mailman/listinfo/nginx-devel

Changes with njs 0.4.1  19 May 2020

*) Feature: added support for multi-value headers in r.headersIn.

*) Feature: introduced raw headers API.

*) Feature: added TypeScript API description.

Core:

*) Bugfix: fixed Array.prototype.slice() for sparse arrays.___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx

Re: Passing a special Magento URL to PHP-FPM

2020-05-19 Thread Francis Daly
On Sat, May 16, 2020 at 06:29:01PM -0400, hgv wrote:

Hi there,

> I’m trying to learn how to pass special Magento 1.x URLs such as this to a
> PHP-FPM backend.

https://forum.nginx.org/read.php?2,288050, plus the response at
https://forum.nginx.org/read.php?2,288050,288051, perhaps?

Cheers,

f
-- 
Francis Dalyfran...@daoine.org
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx