Initial SPLIT-HTTP support

This commit is contained in:
Samuel Huang
2024-08-25 15:12:03 +10:00
parent 651cff5d79
commit ecac780b4f
19 changed files with 336 additions and 30 deletions

9
nginx-grpc.tpl Normal file
View File

@@ -0,0 +1,9 @@
location LOCATION {
if ($content_type !~ "application/grpc") {
return 404;
}
client_max_body_size 0;
client_body_timeout 1071906480m;
grpc_read_timeout 1071906480m;
grpc_pass grpc://HOST:PORT;
}