Skip to content

Commit 52bc36b

Browse files
authored
chore: add wildcard cert download tip (#131)
1 parent 69c5580 commit 52bc36b

9 files changed

Lines changed: 58 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.5.6 (February 18, 2022)
2+
3+
- add download resource chapter
4+
15
## 0.5.5 (一月 29, 2022)
26

37
- feat: use blocklet workflow

blocklet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: '@arcblock/abtnode-docs'
2-
version: 0.5.5
2+
version: 0.5.6
33
description: >-
44
Blocklet Server Documentation, a help documentation for quickly get started
55
with Blocklet Server.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@arcblock/abtnode-docs",
3-
"version": "0.5.5",
3+
"version": "0.5.6",
44
"description": "Blocklet Server Documentation, a help documentation for quickly get started with Blocklet Server.",
55
"main": "index.js",
66
"publishConfig": {

src/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ categories:
7272
Developer Guide:
7373
url: /developer
7474
links:
75+
- /developer/resources
7576
- /developer/config-dev-env
7677
- /developer/abtnode-cli
7778
- /developer/blocklet-cli

src/developer/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ tags:
1111

1212
If you are a developer and want to do something with Blocklet Server ,this chapter is for you:
1313

14+
- [Download Resources](./resources)
1415
- [Configuring the development environment](./config-dev-env)
1516
- [Blocklet Server CLI](./abtnode-cli)
1617
- [Blocklet CLI](./blocklet-cli)

src/developer/index.zh.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ tags:
1111

1212
如果你是开发者,并且正准备在 Blocklet Server 上进行开发,这一章节为你而准备:
1313

14+
- [下载资源](./resources)
1415
- [配置开发环境](./config-dev-env)
1516
- [Blocklet Server CLI 工具](./abtnode-cli)
1617
- [Blocklet CLI 工具](./blocklet-cli)

src/developer/resources/index.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: 'Download Resources'
3+
description: 'Download related resources'
4+
keywords: 'download, resource'
5+
author: 'zhenqiang'
6+
category: ''
7+
layout: 'documentation'
8+
tags:
9+
- 'download'
10+
- 'resource'
11+
---
12+
13+
Blocklet Server downloads some resources, such as HTTPS certificates, when it starts up, and the Blocklet Server CLI sets these download addresses by default during initialization, but in some cases the default addresses may not be accessible. Some other optional download addresses are given in this document.
14+
15+
## HTTPS Certificate download address
16+
17+
- Default Address: https://releases.arcblock.io/
18+
- Ali Cloud Address: https://releases.arcblockio.cn/
19+
20+
The download address can be set via the `ABT_NODE_WILDCARD_CERT_HOST` environment variable, e.g. :
21+
22+
```bash
23+
ABT_NODE_WILDCARD_CERT_HOST=https://releases.arcblockio.cn blocklet server start
24+
```
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: '下载资源'
3+
description: '下载相关资源'
4+
keywords: '下载,资源'
5+
author: 'zhenqiang'
6+
category: ''
7+
layout: 'documentation'
8+
tags:
9+
- '下载'
10+
- '资源'
11+
---
12+
13+
Blocklet Server 在启动的时候会下载一些资源,比如 HTTPS 证书。Blocklet Server CLI 默认在初始化时默认设置了这些下载地址,但是在有些情况下默认地址可能不能正常访问。在该文档中会给出一些其它可选的下载地址。
14+
15+
## HTTPS 证书下载地址
16+
17+
- 默认下载地址: https://releases.arcblock.io/
18+
- 国内阿里云地址: https://releases.arcblockio.cn/
19+
20+
可以通过`ABT_NODE_WILDCARD_CERT_HOST`环境变量设置下载地址,比如:
21+
22+
```bash
23+
ABT_NODE_WILDCARD_CERT_HOST=https://releases.arcblockio.cn blocklet server start
24+
```

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.5
1+
0.5.6

0 commit comments

Comments
 (0)