skip to Main Content

nginx grpc_pass works only on root

This works: server { listen 5005 http2; location / { grpc_pass grpc://my_app:5001; } default_type application/grpc; } this doesnt work: server { listen 5005 http2; location /test { grpc_pass grpc://my_app:5001; } default_type application/grpc; } I receive logs when I go to…

VIEW QUESTION
Back To Top
Search