Skip to content

Commit

Permalink
fix:docs link address (#4666)
Browse files Browse the repository at this point in the history
* fix:docs link address

Signed-off-by: jingyang <[email protected]>

* delete comment

Signed-off-by: jingyang <[email protected]>

---------

Signed-off-by: jingyang <[email protected]>
  • Loading branch information
zjy365 authored Apr 9, 2024
1 parent 2113509 commit 2b1ab31
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/4.0/i18n/zh-Hans/quick-start/use-app-launchpad.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Sealos 的桌面环境类似于单机操作系统 macOS 或 Windows 的桌面环

## 快速安装 Nginx

首先在 [Sealos](https://cloud.sealos.top) 桌面环境中打开**应用管理**
首先在 [Sealos](https://cloud.sealos.run) 桌面环境中打开**应用管理**

![](./images/app-launchpad-zh.webp)

Expand Down
2 changes: 1 addition & 1 deletion docs/4.0/i18n/zh-Hans/quick-start/use-database.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ sidebar_position: 4

## 快速安装 MySQL

1.[Sealos](https://cloud.sealos.top) 桌面环境中打开数据库。
1.[Sealos](https://cloud.sealos.run) 桌面环境中打开数据库。

![](./images/database-launch.jpg)

Expand Down
2 changes: 1 addition & 1 deletion docs/4.0/i18n/zh-Hans/quick-start/use-template.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ sidebar_position: 1

## 1. 选择模板

首先在 [Sealos](https://cloud.sealos.top) 桌面环境中打开「模板市场」。
首先在 [Sealos](https://cloud.sealos.run) 桌面环境中打开「模板市场」。

![](./images/templates.jpg)

Expand Down
6 changes: 3 additions & 3 deletions docs/4.0/i18n/zh-Hans/quick-start/use-terminal.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -134,7 +134,7 @@ metadata:
name: nginx
spec:
rules:
- host: nginx.cloud.sealos.top
- host: nginx.cloud.sealos.run
http:
paths:
- backend:
Expand All @@ -146,7 +146,7 @@ spec:
pathType: Prefix
tls:
- hosts:
- nginx.cloud.sealos.top
- nginx.cloud.sealos.run
secretName: wildcard-cloud-sealos-io-cert
```
Expand Down
2 changes: 1 addition & 1 deletion docs/website/src/hooks/useWindow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 () => {
Expand Down
2 changes: 1 addition & 1 deletion docs/website/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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(() => {
Expand Down

0 comments on commit 2b1ab31

Please sign in to comment.