服务支持fastcgi;路径规则支持匹配后缀

This commit is contained in:
GoEdgeLab
2021-05-10 21:13:47 +08:00
parent 8f1b8bb7d5
commit effbdcabd1
13 changed files with 1772 additions and 193 deletions

View File

@@ -26,21 +26,21 @@ message CreateHTTPGzipRequest {
}
message CreateHTTPGzipResponse {
int64 gzipId = 1;
int64 httpGzipId = 1;
}
// 查找Gzip配置
message FindEnabledGzipConfigRequest {
int64 gzipId = 1;
int64 httpGzipId = 1;
}
message FindEnabledGzipConfigResponse {
bytes gzipJSON = 1;
bytes httpGzipJSON = 1;
}
// 修改Gzip配置
message UpdateHTTPGzipRequest {
int64 gzipId = 1;
int64 httpGzipId = 1;
int32 level = 2;
SizeCapacity minLength = 3;
SizeCapacity maxLength = 4;