lony
lony

Reputation: 7770

Python gRPC server in production?

Can I just run the gRPC Python server in production or do I need something like gunicorn in front?

UPDATE 2020-01-05: To be more specific to 0script0 follow up I add: ... without making security concessions?

Upvotes: 5

Views: 2515

Answers (2)

0script0
0script0

Reputation: 534

No. You should have at least nginx (or other) with grpc upstreams.

Upvotes: -1

kpayson64
kpayson64

Reputation: 349

Yes, running a gRPC Python server in production is fine.

Upvotes: -1

Related Questions