服务支持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

@@ -0,0 +1,16 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
// HTTP Fastcgi定义
message HTTPFastcgi {
int64 id = 1;
bool isOn = 2;
string address = 3;
bytes paramsJSON = 4;
bytes readTimeoutJSON = 5;
bytes connTimeoutJSON = 6;
int32 poolSize = 7;
string pathInfoPattern = 8;
}