REQ: NGINX LDAP Password Masking (nginx.conf)

2021-06-04 Thread Naveen Amresh
Hi Nginx Support Team, I would like to get assistance in Nginx LDAP bindn password masking in nginx.conf file. Thanks & Regards - Naveen ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Tproxy support for IP transparency

2021-06-04 Thread bouvierh
Hello, When my application connects to a sever, I am intercepting the request and routing it to a nginx process located on the same host (listening to 127.0.0.1:8883). The interception need to be transparent, so IP tables does that well. Now the issue is restoring the original destination. This wo

Re: Nginx reverse proxy in front of corporate proxy

2021-06-04 Thread Maxim Dounin
Hello! On Fri, Jun 04, 2021 at 06:20:57AM -0400, Flinou wrote: > Hello! > > I did some research and couldn't find anything similar on the forum, sorry > if I'm wrong. > > I would like to setup something like : > > Client -> https://my-nginx.com -> http://corporate-proxy.com (corporate > proxy)

Re: Using gRPC nginx gateway

2021-06-04 Thread Maxim Konovalov
On 04.06.2021 18:44, babu vel wrote: > Hi Maxim, > > It's not in upstream block. It's in server block. Please refer code snip > below.       > [...] Yes, I missed the line numbers in your snippet. Maxim D.'s has better explanation of what is going here. -- Maxim Konovalov

Re: Using gRPC nginx gateway

2021-06-04 Thread babu vel
Hi Maxim, It's not in upstream block. It's in server block. Please refer code snip below. upstream backend_grpc { server unix:/tmp/nginx_local/grpc_be_management.sock; } server { listen 443 http2 default_server; ssl on; ssl_certif

Re: Using gRPC nginx gateway

2021-06-04 Thread Maxim Dounin
Hello! On Fri, Jun 04, 2021 at 07:54:00AM +, babu vel wrote: > Am using nginx 1.17.3 version and trying to enable http2 and > gRPC gateway. I compiled it enabling http_v2 and gRPC module. > However, am still getting below error reporting unknown > directive "grpc_pass", can you please let

Nginx reverse proxy in front of corporate proxy

2021-06-04 Thread Flinou
Hello! I did some research and couldn't find anything similar on the forum, sorry if I'm wrong. I would like to setup something like : Client -> https://my-nginx.com -> http://corporate-proxy.com (corporate proxy) -> https://website.com (website to reach) Doing curl command like curl -v https:

Re: Serving chunks to clients continuously With Nginx without using .m3u files !

2021-06-04 Thread Fatma MAZARI
Hi, thank you for you response, I want nginx to continuously send Continuation requests including the next chunk. I want to make this point because some applications cannot read playlist files (.m3u) ,I thought about developing a python api which sends packets (http CONTINUATION) ==> the client of

RE: Serving chunks to clients continuously With Nginx without using .m3u files !

2021-06-04 Thread Reinis Rozitis
> I wanna use nginx and ffmpeg to serve chunks to clients without using or > sending .m3u files to clients. How can I do this lease? > * ffmpeg copy streams in local ( in /home/STREAMS/channel/stream%d.ts ==> > /home/STREAMS/channel/stream1.ts , /home/STREAMS/channel/stream2.ts , > /home/STR

Re: Using gRPC nginx gateway

2021-06-04 Thread Maxim Konovalov
Hi Babu, On 04.06.2021 10:54, babu vel wrote: > Hi, > > Am using nginx 1.17.3 version and trying to enable http2 and gRPC > gateway. I compiled it enabling http_v2 and gRPC module. However, am > still getting below error reporting unknown directive "grpc_pass", can > you please let me know what i

Serving chunks to clients continuously With Nginx without using .m3u files !

2021-06-04 Thread Fatma MAZARI
Hi, I have a question. I wanna use nginx and ffmpeg to serve chunks to clients without using or sending .m3u files to clients. How can I do this lease? * ffmpeg copy streams in local ( in /home/STREAMS/channel/stream%d.ts ==> /home/STREAMS/channel/stream1.ts , /home/STREAMS/channel/stream2.ts , /h

Using gRPC nginx gateway

2021-06-04 Thread babu vel
Hi, Am using nginx 1.17.3 version and trying to enable http2 and gRPC gateway. I compiled it enabling http_v2 and gRPC module. However, am still getting below error reporting unknown directive "grpc_pass", can you please let me know what is the issue here? # nginx -c /nginx/conf/grpc.conf -t n