Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mouday committed Jun 4, 2023
1 parent ad733fe commit a84f537
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## 更新日志
- v1.3.1(2023-06-03)
- v1.3.2(2023-06-04)
- 修复 升级失败问题,修改字段port默认值为443

- v1.3.1(2023-06-04)
- 新增 支持一个域名解析到多主机ip地址的SSL证书查询
- 优化 优化前端界面显示

Expand Down
2 changes: 1 addition & 1 deletion domain_admin/model/domain_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class DomainModel(BaseModel):
domain = CharField()

# 端口 @since v1.2.24
port = IntegerField(default=0)
port = IntegerField(default=443)

# 别名/备注
alias = CharField(default="")
Expand Down
2 changes: 1 addition & 1 deletion domain_admin/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"""
版本号
"""
VERSION = '1.3.1'
VERSION = '1.3.2'

0 comments on commit a84f537

Please sign in to comment.