mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-01 02:00:25 +08:00
[HTTPS]可以直接点击按钮申请免费证书
This commit is contained in:
@@ -38,6 +38,9 @@ service ServerService {
|
||||
// 修改服务的反向代理设置
|
||||
rpc updateServerReverseProxy (UpdateServerReverseProxyRequest) returns (RPCSuccess);
|
||||
|
||||
// 查找服务的域名设置
|
||||
rpc findServerNames (FindServerNamesRequest) returns (FindServerNamesResponse);
|
||||
|
||||
// 修改服务的域名设置
|
||||
rpc updateServerNames (UpdateServerNamesRequest) returns (RPCSuccess);
|
||||
|
||||
@@ -176,6 +179,16 @@ message UpdateServerReverseProxyRequest {
|
||||
bytes reverseProxyJSON = 2;
|
||||
}
|
||||
|
||||
// 查找服务的域名设置
|
||||
message FindServerNamesRequest {
|
||||
int64 serverId = 1;
|
||||
}
|
||||
|
||||
message FindServerNamesResponse {
|
||||
bytes serverNamesJSON = 1;
|
||||
}
|
||||
|
||||
// 修改服务的域名设置
|
||||
message UpdateServerNamesRequest {
|
||||
int64 serverId = 1;
|
||||
bytes config = 2;
|
||||
|
||||
Reference in New Issue
Block a user