-
Hello, is it possible to route the GRPC port via a reverse proxy? Gateway -- (connects) --> https://grpc.mydomain.com -- Cloudflare Tunnel --(SSL)--> Nginx --> http://192.168.1.2:50055 Alternatively also tested: At the moment I am facing the problem that the grpc endpoint only seems to accept requests via http/0.9. But the reverse proxies all speak at least http/1.1 Does anyone have an idea? Greetings |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
@patsch9 We are using GRPC reverse proxy on NGINX, for example here are my snipplet for oroxy but for Core GRPC is identical. What is important with NGINX (which doesn't support /path/s/in/url/for/grpc) - you need a dedicated port to do reverse proxy on the / path. And then in configs add the https://domain.com:444/ Iwith port).
Hope that helps |
Beta Was this translation helpful? Give feedback.
@patsch9 We are using GRPC reverse proxy on NGINX, for example here are my snipplet for oroxy but for Core GRPC is identical. What is important with NGINX (which doesn't support /path/s/in/url/for/grpc) - you need a dedicated port to do reverse proxy on the / path. And then in configs add the https://domain.com:444/ Iwith port).