Advanced Rewrite request url to match the query string and normalization

2019-02-26 Thread shadowgun1102
I have a simple nginx forward proxy, configured as: server { listen 8000; resolver 8.8.8.8; location / { proxy_pass http://$host; proxy_set_header Host $host; } } The client behind its isp firewall sends the request (per nginx log): GET http://www.clientisp.com/path/rewrite.do?url=http%3A%2F%2Fww

proxy_cache without proxy_buffers

2019-02-26 Thread loopback_proxy
I am wondering if Nginx will ever support caching without buffering responses? Buffering the full response before sending the data out to client increases the first byte latency (aka TTFB). In a perfect world if nginx can stream the data to the cache file and to the client simultaneously that would

Re: [nginx-announce] nginx-1.15.9

2019-02-26 Thread Kevin Worthington
Hello Nginx users, Now available: Nginx 1.15.9 for Windows https://kevinworthington.com/nginxwin1159 (32-bit and 64-bit versions) These versions are to support legacy users who are already using Cygwin based builds of Nginx. Officially supported native Windows binaries are at nginx.org. Announc

Re: njs question

2019-02-26 Thread Dmitry Volyntsev
On 26.02.2019 9:24, ?? wrote: hello! Hello! I would like to ask some questions about the development of NJS. Hi ?? First: when will NJS improve the ES6 standard? According to http://nginx.org/en/docs/njs/index.html we plan to extend coverage of ES6 and later specifications. This i

njs-0.2.8

2019-02-26 Thread Dmitry Volyntsev
Hello, I'm glad to announce a new release of NGINX JavaScript module (njs). This release proceeds to extend the coverage of ECMAScript specifications and modules functionality. - Added support for setting nginx variables. - Added support for delete operation in r.headersOut. - Properties of

nginx-1.15.9

2019-02-26 Thread Maxim Dounin
Changes with nginx 1.15.926 Feb 2019 *) Feature: variables support in the "ssl_certificate" and "ssl_certificate_key" directives. *) Feature: the "poll" method is now available on Windows when using Windows Vista or newer. *) Bugf

Re: SMTP Forward Nginx Proxy

2019-02-26 Thread Maxim Konovalov
On 26/02/2019 14:46, prasad.wa...@freshgravity.com wrote: > I would like to setup an nginx configuration which accepts SMTP connections > to it and then proxies them to another IP address (the third-party SMTP > service) so the requests to the mail server always appear to the third-party > SMTP ser

Proxy to a local SMTP server via NGINX

2019-02-26 Thread ashish.tho...@freshgravity.com
I have a requirement to route my SMTP traffic to a local SMTP server via NGINX on a public facing server. Also, I am using SMTP to route the HTTP requests on the same server. Can someone provide some insights on this, how this can be achieved? Posted at Nginx Forum: https://forum.nginx.org/read

Re: SMTP Forward Nginx Proxy

2019-02-26 Thread Igor Sysoev
> On 26 Feb 2019, at 14:46, prasad.wa...@freshgravity.com > wrote: > > I would like to setup an nginx configuration which accepts SMTP connections > to it and then proxies them to another IP address (the third-party SMTP > service) so the requests to the mail server always appear to the third-pa

SMTP Forward Nginx Proxy

2019-02-26 Thread prasad.wa...@freshgravity.com
I would like to setup an nginx configuration which accepts SMTP connections to it and then proxies them to another IP address (the third-party SMTP service) so the requests to the mail server always appear to the third-party SMTP service as if they came from the same server. Is it possible to sol