Nginx Proxy Manager进阶:反代grpc

1
2
3
4
5
6
7
8
9
10
11
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;
}


Nginx Proxy Manager进阶:反代grpc
https://b.limour.top/2123.html
Author
Limour
Posted on
January 31, 2023
Licensed under