Hi,
Our deployment uses Lua scripts to add authentication / certain other checks
at the proxy. It does this by the required configuration from the upstream
server and then refreshing it periodically. However, this does add some
memory to each worker process and the refreshes will also hit the up
I am trying to set-up nginx reverse proxy server with dynamic upstream
configuration. The upstream servers are grpc servers, so running over
HTTP2.
Since http2 uses multiplexing and grpc supports bi-directional streaming,
can nginx be configured in below way :
a) Every upstream server on start-up
On Mon, Jul 12, 2021 at 05:45:23PM +0530, Praveen Kumar K S wrote:
Hi there,
> Is there any way to permanently redirect abc.com/def to xyz.com ?
> I have tried return 301. But the context /def is being passed to xyz.com
location = /def { return 301 http://xyz.com/; }
If that does not do what
Hello,
Is there any way to permanently redirect abc.com/def to xyz.com ?
I have tried return 301. But the context /def is being passed to xyz.com
Please help.
Regards,
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/ngin
Hi,
I'm building a demonstration streaming system (for educational purposes -
teaching system design) and I'm trying to figure out whether Nginx can be
used as an HLS reverse proxy in conjunction with Envoy (for sticky load
balancing).
I have the backend servers that convert RTMP into HLS. Now in