Skip to content

Commit

Permalink
chore: remove 1.x documentation (#303)
Browse files Browse the repository at this point in the history
移除 1.x 的文档,以及清除一些过时文档。

1.x 所有文档已经被移动到 https://github.com/halo-dev/v1-legacy-docs 并托管在 https://v1.legacy-docs.halo.run

<img width="669" alt="图片" src="https://github.com/halo-dev/docs/assets/21301288/684e4b0e-fc60-44ae-bda1-52fe62c4670d">

/kind cleanup

```release-note
None
```
  • Loading branch information
ruibaby authored Jan 2, 2024
1 parent c842f13 commit 1d97214
Show file tree
Hide file tree
Showing 193 changed files with 307 additions and 34,598 deletions.
238 changes: 0 additions & 238 deletions docs/getting-started/config.md

This file was deleted.

25 changes: 0 additions & 25 deletions docs/getting-started/downloads.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/getting-started/migrate-from-1.x.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ description: 从 Halo 1.x 迁移的完整指南和注意事项

## 备份数据

在进行迁移操作之前,我们强烈建议先**完整备份所有数据**,可以参考 [备份迁移](https://docs.halo.run/user-guide/backup-migration) 进行整站备份。
在进行迁移操作之前,我们强烈建议先**完整备份所有数据**,可以参考 [备份迁移](https://v1.legacy-docs.halo.run/user-guide/backup-migration) 进行整站备份。

## 导出数据文件

Expand Down
38 changes: 0 additions & 38 deletions docs/user-guide/backup-migration.md

This file was deleted.

41 changes: 19 additions & 22 deletions docs/user-guide/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,28 +84,25 @@ server {

### 如何在一台服务器上部署多个站点?

参考 [写在前面/工作目录](../getting-started/prepare.md#工作目录) 我们可以知道,工作目录对于 Halo 主程序来说是固定的。如果我们需要部署多个站点,我们提供以下两种方式以供参考:

1. 创建多个 Linux 账户,并在每个账户上运行一个独立的 Halo。因为工作目录是基于账户的,所以每个账户都有自己的工作目录。但是有一点需要注意,就是需要修改每一个 Halo 的运行端口,参考:[配置参考/端口](../getting-started/config#%E7%AB%AF%E5%8F%A3)
2. 使用 Docker 创建多个容器,因为使用 Docker 可以将内部的工作目录映射到宿主机的任何目录,可以参考以下创建容器的方式:

```bash
# 第一个 Halo 容器
docker run \
-it -d \
--name halo-1 \
-p 8090:8090 \
-v ~/.halo2:/root/.halo2 \
halohub/halo:2.11 \

# 第二个 Halo 容器
docker run \
-it -d \
--name halo-2 \
-p 8091:8090 \
-v ~/.halo2_2:/root/.halo2 \
halohub/halo:2.11 \
```
使用 Docker 创建多个容器,因为使用 Docker 可以将内部的工作目录映射到宿主机的任何目录,可以参考以下创建容器的方式:

```bash
# 第一个 Halo 容器
docker run \
-it -d \
--name halo-1 \
-p 8090:8090 \
-v ~/.halo2:/root/.halo2 \
halohub/halo:2.11 \

# 第二个 Halo 容器
docker run \
-it -d \
--name halo-2 \
-p 8091:8090 \
-v ~/.halo2_2:/root/.halo2 \
halohub/halo:2.11 \
```

更多 Docker 相关的教程请参考:[使用 Docker 部署 Halo](../getting-started/install/docker.md)

Expand Down
Loading

1 comment on commit 1d97214

@vercel
Copy link

@vercel vercel bot commented on 1d97214 Jan 2, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

halo-docs – ./

halo-docs-git-main-halo-dev.vercel.app
halo-docs-halo-dev.vercel.app
halo-docs.vercel.app
docs.halo.run

Please sign in to comment.