mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2026-04-30 03:15:18 +08:00
实现访问日志配置
This commit is contained in:
@@ -33,6 +33,9 @@ service HTTPWebService {
|
||||
|
||||
// 更改Pages
|
||||
rpc updateHTTPWebPages (UpdateHTTPWebPagesRequest) returns (RPCUpdateSuccess);
|
||||
|
||||
// 更改访问日志配置
|
||||
rpc updateHTTPAccessLog (UpdateHTTPAccessLogRequest) returns (RPCUpdateSuccess);
|
||||
}
|
||||
|
||||
// 创建Web配置
|
||||
@@ -94,3 +97,9 @@ message UpdateHTTPWebPagesRequest {
|
||||
int64 webId = 1;
|
||||
bytes pagesJSON = 2;
|
||||
}
|
||||
|
||||
// 更改访问日志配置
|
||||
message UpdateHTTPAccessLogRequest {
|
||||
int64 webId = 1;
|
||||
bytes accessLogJSON = 2;
|
||||
}
|
||||
Reference in New Issue
Block a user