Dmitry Volyntsev

Results 119 comments of Dmitry Volyntsev

njs binary will come, when you build njs modules. I was talking about building standalone njs binary.

@magic-thomas Please, do not try to shift the burden of your own work on strangers. Before asking new questions, please, study this [document](http://www.catb.org/~esr/faqs/smart-questions.html#before).

Hi @ai, >You can open an issue and mention me, I will add extra details. Please, provide me with the list of information required to create a `.browserslistrc`. A link...

Hi @tmm360, The more standard approach for such tasks is outputting all the necessary data to logs, For example using variables like [$upstream_response_length](http://nginx.org/en/docs/http/ngx_http_upstream_module.html#var_upstream_response_length), with a `proxy_pass` location and custom [logs](http://nginx.org/en/docs/http/ngx_http_log_module.html)...

@tmm360, Alternatively, you may consider the [post_action](https://www.oreilly.com/library/view/nginx-http-server/9781788623551/539d7f88-1c64-4457-a1a4-3f68d1aafadb.xhtml) directive. It is unofficially supported by nginx. In a `post_action` location you may add another proxy_pass and construct the desired request for your...

Hi @tmm360, Please, share whether you was able to use `post_action` to solve your task.

@tmm360, Glad to hear! Feel free to share the simplified nginx.conf with the solution for anyone with the similar tasks.

Hi @magic-thomas, Was you able to solve the issue?

Hi @yogeshgadge, Have you ever considered [log_format escape=none](https://nginx.org/en/docs/http/ngx_http_log_module.html#log_format)? Combine log_format with js_set variables returning serialized JSON.

@yogeshgadge >Is this better than trying to open same file in append mode and write to it in every vm in ever request ? It depends, opening a file is...