2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-05 12:23:35 +08:00
Files
panel/app/plugins/certbot/certbot.go
2023-11-01 01:41:57 +08:00

14 lines
451 B
Go

package certbot
var (
Name = "证书管理器"
Description = "证书管理器使用 ACME 协议为服务器从证书颁发机构自动获取 HTTPS 证书。"
Slug = "certbot"
Version = "1.0.0"
Requires = []string{}
Excludes = []string{}
Install = `bash /www/panel/scripts/certbot/install.sh`
Uninstall = `bash /www/panel/scripts/certbot/uninstall.sh`
Update = `bash /www/panel/scripts/certbot/update.sh`
)