1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-03-04 13:04:13 +08:00

27 lines
541 B
Go
Raw Normal View History

2022-11-24 10:28:39 +08:00
export namespace Nginx {
export interface NginxScopeReq {
scope: string;
}
export interface NginxParam {
name: string;
params: string[];
}
export interface NginxConfigReq {
operate: string;
websiteId?: number;
scope: string;
params?: any;
}
2022-11-24 16:06:18 +08:00
export interface NginxStatus {
accepts: string;
handled: string;
active: string;
requests: string;
reading: string;
writing: string;
waiting: string;
}
2022-11-24 10:28:39 +08:00
}