ShivaniSK
ShivaniSK
I am trying to integrate grpc with spring cloud gateway. I want to hit a grpc url and redirect it to the grpc service. My gateway config looks like below...
I have configured the api gateway with grpc. The requests route correctly to the grpc url, however gateway is unable to read the response and it fails with below error...
### Issue description I have below config in my application.yml file grpc: server: port: 50055 ssl: **cert-chain: classpath:certificate.crt private-key: classpath:cert.key** **However the private key "cert.key" which I have is encrypted...