Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mouday committed Feb 23, 2024
1 parent 7695c65 commit a2e8e8c
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
- v1.6.10(2024-02-21)
- 修复触发分组新增分组后无法自动勾选问题
- fix:修复分组关联域名弹框分页数量无法更改的问题
- fix:修复触发分组新增分组后无法自动勾选问题
- 增加证书列表批量操作
- fix:修复手动设置启动网站监测状态后不运行的问题

Expand Down
3 changes: 3 additions & 0 deletions doc/source/manual/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
- 2023-07-21 IT仔的笔记本 [一套属于自己的域名、证书管理系统,只需要1分钟就能上手,(收藏起来,会用到的)](https://mp.weixin.qq.com/s/rYpWBgZgizqDWOaPq2g1_g)
- 2023-07-27 DevOps运维民工 [推荐一款开源的域名和SSL证书监测平台](https://mp.weixin.qq.com/s/LlaD7KUogwdfQMs_v7QgPg)
- 2023-07-29 云原生运维技术 [运维百宝箱-https证书的过期巡检监控](https://mp.weixin.qq.com/s/iL5AHjw1gZ5_vnWsI8OfNA)
- 2023-08-20 帝国辉耀1 [domain-admin域名监控的源码搭建](https://blog.csdn.net/u013901725/article/details/132394530)
- 2023-08-21 帝国辉耀1 [domain-admin域名监控的使用(二)](https://blog.csdn.net/u013901725/article/details/132403565)
- 2023-08-21 PHP学习网 [【开源推荐】基于Python + Vue3.js 技术栈实现的域名和SSL证书监测平台](https://mp.weixin.qq.com/s/7qvYTALe5uIlkD3jEgQ1Kw)
- 2023-08-30 运维开发故事 [基于Python + Vue3.js 技术栈实现的域名和SSL证书监测平台](https://mp.weixin.qq.com/s/cOOJN6eUSqP0wmt8-3sOJw)
- 2023-09-11 浩道Linux [【来自读者投稿】这款开源的域名和SSL证书监测平台真香!](https://mp.weixin.qq.com/s/z1MOe8ptp76F0PEHaxVsjQ)
Expand All @@ -28,6 +30,7 @@
- 2023-11-03 测试指北 [Domain Admin—基于Python + Vue3.js 技术栈实现的域名和SSL证书监测平台](https://mp.weixin.qq.com/s/kvUNi25ge3YLKUYcsR-CGA)
- 2023-12-28 跬步之巅 [开源初探 - domain-admin](https://mp.weixin.qq.com/s/dnFitCv_n9os20TLYLbITw)
- 2024-01-31 IT仔的笔记本 [网站管理员的福利 | 一个开源的域名和SSL证书监测平台](https://mp.weixin.qq.com/s/AzaiyhUpBQHBCMdhEkYmSQ)
- 2024-02-23 漫跑的小兔 [用Docker部署Domain Admin](https://mp.weixin.qq.com/s/sie9zDP86Ez93FqvJlnU6Q)

## 参考文章

Expand Down
61 changes: 61 additions & 0 deletions doc/source/manual/notify.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,67 @@ https://push.showdoc.com.cn/server/api/push/<API Key>
}
```

### 2.5、webhook发送飞书消息

模板示例由微信群友@kaka 提供

```json
{
"msg_type": "interactive",
"card": {
"config": {
"wide_screen_mode": true,
"enable_forward": true
},
"elements": [{
"tag": "div",
"text": {
"tag": "plain_text",
"content": "",
"lines": 1
}
,
"fields": [

{

"text": {
"tag": "lark_md",
"content": "**域名证书 **: <ul> {%- for row in list %} {%- if row.expire_days > 0 %} <li> {{row.domain}} {{"当前域名或证书 申请时间: "}} {{row.start_date or '-' }} - {{"到期时间: "}} {{row.expire_date or '-' }} {{"剩余: "}}( {% if row.expire_days > 0 %} {{row.expire_days}} {% endif %} ) {{"天; "}} {% endif %} {% endfor %} </li> </ul> "
}
}

]

},


{
"actions": [{
"tag": "button",

"text": {
"content": "域名或证书过期提醒 :玫瑰:",
"tag": "lark_md"
},
"url": "https://dc.console.aliyun.com/",
"type": "primary",
"value": {
"chosen": "approve"
}
}],
"tag": "action"
}],
"header": {
"title": {
"content": "域名或证书过期 告警",
"tag": "plain_text"
},
"template": "red"
}
}
}
```
## 3、企业微信

```json
Expand Down

0 comments on commit a2e8e8c

Please sign in to comment.