NGINX open source reverse proxy is not connected with same ip as incoming request , it’s changing ip due to this client connnection is not happening - UDP

2019-08-06 Thread atulsharma1989
We are using NGINX open source version 1.12.2 and we have NaT ip configure on vm physical interface. Issue we have , NGINX is changing IP address during reverse proxy step. udp Incoming request is coming from client in internet and request transfer to connected NAT interface ip Then it split co

Re: Proxy Caching ignore path

2019-08-06 Thread itpp2012
Above not below. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,285128,285135#msg-285135 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Resident memory not released

2019-08-06 Thread aledbf
> Was it for the same reason as me you tried jemalloc? Yes > did you find any other solutions? No > Also, did you set it up via LD_PRELOAD, or how did you set it up? No. I added the -ljemalloc option in --with-ld-opt flag in the build process Posted at Nginx Forum: https://forum.nginx.org/

Re: Proxy Caching ignore path

2019-08-06 Thread jvanetten
itpp2012 Wrote: --- > The first location match is the active one, add another location > before this one to change its caching behavior. So adding the following below the other location should work?: location /gateway/public/files/ { expires -1

Re: Proxy Caching ignore path

2019-08-06 Thread itpp2012
The first location match is the active one, add another location before this one to change its caching behavior. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,285128,285130#msg-285130 ___ nginx mailing list nginx@nginx.org http://mailman.ng

Proxy Caching ignore path

2019-08-06 Thread jvanetten
I have a situation where I need to enable proxy cache for a gateway but anything that goes to /gateway/public/files/ I do not want to cache. I have tried nested locations and all kinds of configurations with no success. It usually lands up with 404 errors on /gateway/public/files/ the complete url

Re: Resident memory not released

2019-08-06 Thread fredr
aledbf Wrote: --- > We used jemalloc in the past, but that approach also introduces > different issues like not being able to use third-party monitory > agents like dynatrace. Was it for the same reason as me you tried jemalloc? did you find any