mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-09 00:40:24 +08:00
反向代理中源站增加最大连接数、连接超时时间等参数
This commit is contained in:
@@ -28,6 +28,11 @@ message CreateOriginRequest {
|
||||
string description = 3;
|
||||
int32 weight = 4;
|
||||
bool isOn = 5;
|
||||
bytes connTimeoutJSON = 6;
|
||||
bytes readTimeoutJSON = 7;
|
||||
bytes idleTimeoutJSON = 8;
|
||||
int32 maxConns = 9;
|
||||
int32 maxIdleConns = 10;
|
||||
}
|
||||
|
||||
message CreateOriginResponse {
|
||||
@@ -42,6 +47,11 @@ message UpdateOriginRequest {
|
||||
string description = 4;
|
||||
int32 weight = 5;
|
||||
bool isOn = 6;
|
||||
bytes connTimeoutJSON = 7;
|
||||
bytes readTimeoutJSON = 8;
|
||||
bytes idleTimeoutJSON = 9;
|
||||
int32 maxConns = 10;
|
||||
int32 maxIdleConns = 11;
|
||||
}
|
||||
|
||||
// 查找单个源站信息
|
||||
|
||||
Reference in New Issue
Block a user