fix:docs link address (#4666)

* fix:docs link address

Signed-off-by: jingyang <3161362058@qq.com>

* delete comment

Signed-off-by: jingyang <3161362058@qq.com>

---------

Signed-off-by: jingyang <3161362058@qq.com>
This commit is contained in:
jingyang
2024-04-09 17:06:36 +08:00
committed by GitHub
parent 2113509f40
commit 2b1ab315ec
6 changed files with 8 additions and 8 deletions
@@ -12,7 +12,7 @@ Sealos 的桌面环境类似于单机操作系统 macOS 或 Windows 的桌面环
## 快速安装 Nginx
首先在 [Sealos](https://cloud.sealos.top) 桌面环境中打开**应用管理**。
首先在 [Sealos](https://cloud.sealos.run) 桌面环境中打开**应用管理**。
![](./images/app-launchpad-zh.webp)
@@ -10,7 +10,7 @@ sidebar_position: 4
## 快速安装 MySQL
1. 在 [Sealos](https://cloud.sealos.top) 桌面环境中打开数据库。
1. 在 [Sealos](https://cloud.sealos.run) 桌面环境中打开数据库。
![](./images/database-launch.jpg)
@@ -8,7 +8,7 @@ sidebar_position: 1
## 1. 选择模板
首先在 [Sealos](https://cloud.sealos.top) 桌面环境中打开「模板市场」。
首先在 [Sealos](https://cloud.sealos.run) 桌面环境中打开「模板市场」。
![](./images/templates.jpg)
@@ -6,7 +6,7 @@ sidebar_position: 3
熟悉 Kubernetes 和容器基础知识的用户可以选择使用「[终端](/guides/terminal/terminal.md)」命令行来部署应用。本文以 Nginx 为例,介绍如何使用终端来部署应用。
首先在 [Sealos](https://cloud.sealos.top) 桌面环境中打开终端 App。
首先在 [Sealos](https://cloud.sealos.run) 桌面环境中打开终端 App。
![](./images/app-launchpad-1.jpg)
@@ -134,7 +134,7 @@ metadata:
name: nginx
spec:
rules:
- host: nginx.cloud.sealos.top
- host: nginx.cloud.sealos.run
http:
paths:
- backend:
@@ -146,7 +146,7 @@ spec:
pathType: Prefix
tls:
- hosts:
- nginx.cloud.sealos.top
- nginx.cloud.sealos.run
secretName: wildcard-cloud-sealos-io-cert
```
+1 -1
View File
@@ -29,7 +29,7 @@ export default function () {
setCloudUrl(
window.location.hostname === 'sealos.io'
? 'https://cloud.sealos.io'
: 'https://cloud.sealos.top'
: 'https://cloud.sealos.run'
);
return () => {
+1 -1
View File
@@ -14,7 +14,7 @@ import './index.scss';
import Head from '@docusaurus/Head';
const Home = () => {
const { screenWidth, cloudUrl, currentLanguage } = useWindow();
const { screenWidth, currentLanguage } = useWindow();
const isPc = useMemo(() => screenWidth > PC_MIN_WIDTH, [screenWidth]);
useEffect(() => {