title: Nginx Proxy Manager进阶:反代grpc tags: [] id: '2549' categories:
uncategorized
location /path {
if ($content_type !~ "application/grpc") {
return 404;
}
client_body_buffer_size 1m;
client_body_timeout 1h;
client_max_body_size 0;
grpc_read_timeout 1h;
grpc_send_timeout 1h;
grpc_pass grpc://nui:43216;
}