Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
MIT License

Copyright (c) 2025 certimate-go
Copyright (c) 2024 Yoan.Liu

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 📄 Documentation for [Certimate](https://github.com/usual2970/certimate)
# 📄 Documentation for [Certimate](https://github.com/certimate-go/certimate)

Please visit [docs.certimate.me](https://docs.certimate.me/).

Expand Down
8 changes: 4 additions & 4 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ const config: Config = {
position: "right",
},
{
href: "https://github.com/usual2970/certimate",
href: "https://github.com/certimate-go/certimate",
position: "right",
className: "icon icon-github",
},
Expand Down Expand Up @@ -126,11 +126,11 @@ const config: Config = {
items: [
{
label: "${ISSUES}",
href: "https://github.com/usual2970/certimate/issues",
href: "https://github.com/certimate-go/certimate/issues",
},
{
label: "${NFR}",
href: "https://github.com/usual2970/certimate/issues/new?template=2-feature_request.yml",
href: "https://github.com/certimate-go/certimate/issues/new?template=2-feature_request.yml",
},
{
label: "${TELEGRAM}",
Expand All @@ -143,7 +143,7 @@ const config: Config = {
items: [
{
label: "${GITHUB}",
href: "https://github.com/usual2970/certimate",
href: "https://github.com/certimate-go/certimate",
},
{
label: "${DONATE}",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Releases

| Current latest version | Current latest stable version |
| :------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------: |
| ![GitHub Release](https://img.shields.io/github/v/release/usual2970/certimate?include_prereleases&sort=semver) | ![GitHub Release](https://img.shields.io/github/v/release/usual2970/certimate?sort=semver) |
| Current latest version | Current latest stable version |
| :---------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------: |
| ![GitHub Release](https://img.shields.io/github/v/release/certimate-go/certimate?include_prereleases&sort=semver) | ![GitHub Release](https://img.shields.io/github/v/release/certimate-go/certimate?sort=semver) |

A full changelog of past releases is available on [GitHub Releases](https://github.com/usual2970/certimate/releases) page.
A full changelog of past releases is available on [GitHub Releases](https://github.com/certimate-go/certimate/releases) page.

---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ docker run -d \
-v /etc/localtime:/etc/localtime:ro \
-v /etc/timezone:/etc/timezone:ro \
-v $(pwd)/data:/app/pb_data \
usual2970/certimate:latest
certimate/certimate:latest
```

:::caution
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Supported operating systems:

## Download {#download}

Download the archived package of precompiled binary files directly from [GitHub Releases](https://github.com/usual2970/certimate/releases).
Download the archived package of precompiled binary files directly from [GitHub Releases](https://github.com/certimate-go/certimate/releases).

---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ You can copy the following command to the terminal, and run Certimate through Do
```bash
mkdir -p ~/.certimate && \
cd ~/.certimate && \
curl -O https://raw.githubusercontent.com/usual2970/certimate/refs/heads/main/docker/docker-compose.yml && \
curl -O https://raw.githubusercontent.com/certimate-go/certimate/refs/heads/main/docker/docker-compose.yml && \
docker compose up -d
```

Expand All @@ -28,8 +28,8 @@ The above command will download `docker-compose.yml` from GitHub, or you can dep
version: "3.0"
services:
certimate:
image: usual2970/certimate:latest
container_name: certimate_server
image: certimate/certimate:latest
container_name: certimate
ports:
- 8090:8090
volumes:
Expand All @@ -47,7 +47,7 @@ If you don't want to use Docker Compose, you can also run it through `docker run

```bash
# Pull image
docker pull usual2970/certimate:latest
docker pull certimate/certimate:latest
# Start container
docker run -d \
--name certimate_server \
Expand All @@ -56,7 +56,7 @@ docker run -d \
-v /etc/localtime:/etc/localtime:ro \
-v /etc/timezone:/etc/timezone:ro \
-v $(pwd)/data:/app/pb_data \
usual2970/certimate:latest
certimate/certimate:latest
```

---
Expand All @@ -69,7 +69,7 @@ We also provide an accelerated image on Alibaba Cloud, which is completely consi

```bash
# Pull image
docker pull registry.cn-shanghai.aliyuncs.com/usual2970/certimate:latest
docker pull registry.cn-shanghai.aliyuncs.com/certimate/certimate:latest
# Start container
docker run -d \
--name certimate_server \
Expand All @@ -78,7 +78,7 @@ docker run -d \
-v /etc/localtime:/etc/localtime:ro \
-v /etc/timezone:/etc/timezone:ro \
-v $(pwd)/data:/app/pb_data \
registry.cn-shanghai.aliyuncs.com/usual2970/certimate:latest
registry.cn-shanghai.aliyuncs.com/certimate/certimate:latest
```

---
Expand All @@ -91,7 +91,7 @@ If you want to run a specified version of Certimate, you can specify when pullin

```bash
# Pull image of v0.3.0
docker pull usual2970/certimate:v0.3.0
docker pull certimate/certimate:v0.3.0
```

You can view the full version list on [GitHub Releases](https://github.com/usual2970/certimate/releases) or [Docker Hub](https://hub.docker.com/r/usual2970/certimate/tags) pages.
You can view the full version list on [GitHub Releases](https://github.com/certimate-go/certimate/releases) or [Docker Hub](https://hub.docker.com/r/certimate/certimate/tags) pages.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Required runtimes:
## Clone {#clone}

```bash
git clone https://github.com/usual2970/certimate.git
git clone https://github.com/certimate-go/certimate.git
```

---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Upgrade

A full changelog of past releases is available on [GitHub Releases](https://github.com/usual2970/certimate/releases) page.
A full changelog of past releases is available on [GitHub Releases](https://github.com/certimate-go/certimate/releases) page.

:::tip

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Certimate aims to provide users with a secure and user-friendly SSL certificate

**Deploy Certimate in 5 minutes!**

Download the archived package of precompiled binary files directly from [GitHub Releases](https://github.com/usual2970/certimate/releases), extract and then execute:
Download the archived package of precompiled binary files directly from [GitHub Releases](https://github.com/certimate-go/certimate/releases), extract and then execute:

```bash
./certimate serve
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,4 @@

## Cannot solve the problem? {#cannot-solve-the-problem}

If none of the above content can solve your problem, welcome to ask on [GitHub Issues](https://github.com/usual2970/certimate/issues).
If none of the above content can solve your problem, welcome to ask on [GitHub Issues](https://github.com/certimate-go/certimate/issues).
6 changes: 3 additions & 3 deletions i18n/en/docusaurus-theme-classic/footer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@
},
"link.item.label.${ISSUES}": {
"message": "Issues",
"description": "The label of footer link with label=${ISSUES} linking to https://github.com/usual2970/certimate/issues"
"description": "The label of footer link with label=${ISSUES} linking to https://github.com/certimate-go/certimate/issues"
},
"link.item.label.${NFR}": {
"message": "Feature Requests",
"description": "The label of footer link with label=${NFR} linking to https://github.com/usual2970/certimate/issues"
"description": "The label of footer link with label=${NFR} linking to https://github.com/certimate-go/certimate/issues"
},
"link.item.label.${TELEGRAM}": {
"message": "Telegram",
"description": "The label of footer link with label=${DONATE} linking to https://t.me/+ZXphsppxUg41YmVl"
},
"link.item.label.${GITHUB}": {
"message": "GitHub",
"description": "The label of footer link with label=${GITHUB} linking to https://github.com/usual2970/certimate"
"description": "The label of footer link with label=${GITHUB} linking to https://github.com/certimate-go/certimate"
},
"link.item.label.${DONATE}": {
"message": "Donate",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# 版本发布

| 当前最新版本 | 当前最新稳定版本 |
| :------------------------------------------------------------------------------------------------------------: | :----------------------------------------------------------------------------------------: |
| ![GitHub Release](https://img.shields.io/github/v/release/usual2970/certimate?include_prereleases&sort=semver) | ![GitHub Release](https://img.shields.io/github/v/release/usual2970/certimate?sort=semver) |
| 当前最新版本 | 当前最新稳定版本 |
| :---------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------: |
| ![GitHub Release](https://img.shields.io/github/v/release/certimate-go/certimate?include_prereleases&sort=semver) | ![GitHub Release](https://img.shields.io/github/v/release/certimate-go/certimate?sort=semver) |

完整的过往版本发布记录可以在 [GitHub Releases](https://github.com/usual2970/certimate/releases) 页面查阅。
完整的过往版本发布记录可以在 [GitHub Releases](https://github.com/certimate-go/certimate/releases) 页面查阅。

---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@

```bash
docker run -d \
--name certimate_server \
--name certimate \
--restart unless-stopped \
-p 9999:8090 \
-v /etc/localtime:/etc/localtime:ro \
-v /etc/timezone:/etc/timezone:ro \
-v $(pwd)/data:/app/pb_data \
usual2970/certimate:latest
certimate/certimate:latest
```

:::caution
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

## 下载 {#download}

请前往 [GitHub Releases](https://github.com/usual2970/certimate/releases) 页面下载预先编译好的二进制可执行文件压缩包。
请前往 [GitHub Releases](https://github.com/certimate-go/certimate/releases) 页面下载预先编译好的二进制可执行文件压缩包。

压缩包文件名后缀包含系统架构信息,请结合你的设备需要自行选择相应的压缩包,下载并解压缩全部文件。

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
```bash
mkdir -p ~/.certimate && \
cd ~/.certimate && \
curl -O https://raw.githubusercontent.com/usual2970/certimate/refs/heads/main/docker/docker-compose.yml && \
curl -O https://raw.githubusercontent.com/certimate-go/certimate/refs/heads/main/docker/docker-compose.yml && \
docker compose up -d
```

Expand All @@ -28,8 +28,8 @@ docker compose up -d
version: "3.0"
services:
certimate:
image: usual2970/certimate:latest
container_name: certimate_server
image: certimate/certimate:latest
container_name: certimate
ports:
- 8090:8090
volumes:
Expand All @@ -47,16 +47,16 @@ services:

```bash
# 拉取镜像
docker pull usual2970/certimate:latest
docker pull certimate/certimate:latest
# 启动容器
docker run -d \
--name certimate_server \
--name certimate \
--restart unless-stopped \
-p 8090:8090 \
-v /etc/localtime:/etc/localtime:ro \
-v /etc/timezone:/etc/timezone:ro \
-v $(pwd)/data:/app/pb_data \
usual2970/certimate:latest
certimate/certimate:latest
```

---
Expand All @@ -69,7 +69,7 @@ docker run -d \

```bash
# 拉取镜像
docker pull registry.cn-shanghai.aliyuncs.com/usual2970/certimate:latest
docker pull registry.cn-shanghai.aliyuncs.com/certimate/certimate:latest
# 启动容器
docker run -d \
--name certimate_server \
Expand All @@ -78,7 +78,7 @@ docker run -d \
-v /etc/localtime:/etc/localtime:ro \
-v /etc/timezone:/etc/timezone:ro \
-v $(pwd)/data:/app/pb_data \
registry.cn-shanghai.aliyuncs.com/usual2970/certimate:latest
registry.cn-shanghai.aliyuncs.com/certimate/certimate:latest
```

---
Expand All @@ -91,7 +91,7 @@ docker run -d \

```bash
# 拉取 v0.3.0 镜像
docker pull usual2970/certimate:v0.3.0
docker pull certimate/certimate:v0.3.0
```

完整的版本清单可以在 [GitHub Releases](https://github.com/usual2970/certimate/releases) 或 [Docker Hub](https://hub.docker.com/r/usual2970/certimate/tags) 页面查阅。
完整的版本清单可以在 [GitHub Releases](https://github.com/certimate-go/certimate/releases) 或 [Docker Hub](https://hub.docker.com/r/certimate/certimate/tags) 页面查阅。
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
## 克隆 {#clone}

```bash
git clone https://github.com/usual2970/certimate.git
git clone https://github.com/certimate-go/certimate.git
```

---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 升级

在 [GitHub Releases](https://github.com/usual2970/certimate/releases) 页面,你可以找到每个版本的发布说明。
在 [GitHub Releases](https://github.com/certimate-go/certimate/releases) 页面,你可以找到每个版本的发布说明。

:::tip

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Certimate 旨在为用户提供一个安全、简便的 SSL 证书管理解决

**5 分钟部署 Certimate!**

从 [GitHub Releases](https://github.com/usual2970/certimate/releases) 页面下载预先编译好的二进制可执行文件压缩包,解压缩后在终端中执行:
从 [GitHub Releases](https://github.com/certimate-go/certimate/releases) 页面下载预先编译好的二进制可执行文件压缩包,解压缩后在终端中执行:

```bash
./certimate serve
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,4 +114,4 @@

## 仍不能解决问题? {#cannot-solve-the-problem}

如果以上内容都无法解决你的问题,欢迎到 [GitHub Issues](https://github.com/usual2970/certimate/issues) 中提问。
如果以上内容都无法解决你的问题,欢迎到 [GitHub Issues](https://github.com/certimate-go/certimate/issues) 中提问。
6 changes: 3 additions & 3 deletions i18n/zh/docusaurus-theme-classic/footer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@
},
"link.item.label.${ISSUES}": {
"message": "Issues",
"description": "The label of footer link with label=${ISSUES} linking to https://github.com/usual2970/certimate/issues"
"description": "The label of footer link with label=${ISSUES} linking to https://github.com/certimate-go/certimate/issues"
},
"link.item.label.${NFR}": {
"message": "Feature Requests",
"description": "The label of footer link with label=${NFR} linking to https://github.com/usual2970/certimate/issues"
"description": "The label of footer link with label=${NFR} linking to https://github.com/certimate-go/certimate/issues"
},
"link.item.label.${TELEGRAM}": {
"message": "Telegram",
"description": "The label of footer link with label=${DONATE} linking to https://t.me/+ZXphsppxUg41YmVl"
},
"link.item.label.${GITHUB}": {
"message": "GitHub",
"description": "The label of footer link with label=${GITHUB} linking to https://github.com/usual2970/certimate"
"description": "The label of footer link with label=${GITHUB} linking to https://github.com/certimate-go/certimate"
},
"link.item.label.${DONATE}": {
"message": "捐赠",
Expand Down
Binary file modified static/gh/installation_1panel.en.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/gh/installation_1panel.zh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/gh/installation_aapanel.en.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/gh/installation_aapanel.zh.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.