All Questions
Tagged with grpc-python nginx
5 questions
0
votes
0
answers
69
views
Getting Error Exception calling application: [Errno 5] Input/output error sometimes
my sample.proto file
syntax = "proto3";
package protofile;
import "google/protobuf/timestamp.proto";
import "google/protobuf/struct.proto";
option go_package = "./...
1
vote
1
answer
4k
views
Redirect gRPC traffic using nginx from HTTPS to HTTP
I am planning to redirect HTTPS and HTTP gRPC traffic using nginx for a special use case. I am being able to recreate the problem using a hello world example. The main documentation I have used are [...
0
votes
0
answers
4k
views
Connect to GRPC service through curl?
I have a simple grpc service helloworld. its server is running in ec2 instance behind nginx. I am trying to connect to grpc server from my local machine using curl. I am following the same code that ...
0
votes
1
answer
2k
views
Getting ERR_INVALID_HTTP_RESPONSE while making grpc-web request to local server
I am trying grpc-web hello world program in an angular application, hitting a local python server via nginx and I am getting ERR_INVALID_HTTP_RESPONSE error in browser. I don't think the request is ...
1
vote
1
answer
3k
views
How to fix "upstream prematurely closed connection while reading response header from upstream" on secure Nginx
I configure my nginx:
user root;
worker_processes 1;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
http {
log_format main '...